mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-12 02:57:44 -04:00
close: fix white text on light bg for render-peer-issues (#8526)
Similar issue to https://github.com/pnpm/pnpm/pull/7454 White text on light background for project name.
This commit is contained in:
5
.changeset/eight-comics-peel.md
Normal file
5
.changeset/eight-comics-peel.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@pnpm/render-peer-issues": patch
|
||||
---
|
||||
|
||||
Fix white text on light background for project name [#8526](https://github.com/pnpm/pnpm/pull/8526).
|
||||
@@ -80,7 +80,7 @@ export function renderPeerIssues (
|
||||
`Peer dependencies that should be installed:\n ${cliColumns(Object.entries(intersections).map(([name, version]) => formatNameAndRange(name, version)), cliColumnsOptions)}`
|
||||
)
|
||||
}
|
||||
const title = chalk.white(projectKey)
|
||||
const title = chalk.reset(projectKey)
|
||||
let summariesConcatenated = summaries.join('\n')
|
||||
if (summariesConcatenated) {
|
||||
summariesConcatenated += '\n'
|
||||
|
||||
Reference in New Issue
Block a user