We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf648a2 commit 2ed1719Copy full SHA for 2ed1719
packages/angular_devkit/benchmark/src/main.ts
@@ -98,10 +98,11 @@ export async function main({
98
let output = stdout;
99
switch (entry.level) {
100
case 'info':
101
- color = terminal.white;
+ color = s => s;
102
break;
103
case 'warn':
104
color = terminal.yellow;
105
+ output = stderr;
106
107
case 'error':
108
color = terminal.red;
packages/angular_devkit/core/node/cli-logger.ts
@@ -29,7 +29,7 @@ export function createConsoleLogger(
29
30
31
32
- color = terminal.reset;
33
34
35
color = (s: string) => terminal.bold(terminal.yellow(s));
0 commit comments