We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e4a3a commit a1d0f9dCopy full SHA for a1d0f9d
1 file changed
packages/nx-plugin/src/executors/internal/cli.ts
@@ -31,7 +31,7 @@ export function formatCommandLog(
31
logElements.push(chalk.cyan(command));
32
if (args.length > 0) {
33
// eslint-disable-next-line functional/immutable-data
34
- logElements.push(chalk.white(args.join(' ')));
+ logElements.push(chalk.dim.gray(args.join(' ')));
35
}
36
return logElements.join(' ');
37
0 commit comments