Skip to content

Commit

Permalink
fix(@angular/cli): remove color from help epilogue
Browse files Browse the repository at this point in the history
In some cases gray doesn't provide enough contrast.
  • Loading branch information
alan-agius4 authored and clydin committed Jun 27, 2022
1 parent 5a012b5 commit 4fa039b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular/cli/src/command-builder/command-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export async function runCommand(args: string[], logger: logging.Logger): Promis
'deprecated: %s': colors.yellow('deprecated:') + ' %s',
'Did you mean %s?': 'Unknown command. Did you mean %s?',
})
.epilogue(colors.gray('For more information, see https://angular.io/cli/.\n'))
.epilogue('For more information, see https://angular.io/cli/.\n')
.demandCommand(1, demandCommandFailureMessage)
.recommendCommands()
.middleware(normalizeOptionsMiddleware)
Expand Down

0 comments on commit 4fa039b

Please sign in to comment.