Skip to content

Commit 0032dba

Browse files
committed
refactor(utils): make execute process logs gray as CI does not display dim/cyan well
1 parent 728d117 commit 0032dba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/utils/src/lib/format-command-log.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function formatCommandLog(
2222
? [ansis.italic(ansis.gray(execDir))]
2323
: []),
2424
ansis.yellow('$'),
25-
ansis.cyan(command),
26-
ansis.dim(args.map(arg => arg).join(' ')),
25+
ansis.gray(command),
26+
ansis.gray(args.map(arg => arg).join(' ')),
2727
].join(' ');
2828
}

0 commit comments

Comments
 (0)