Skip to content

Commit 64cc005

Browse files
alan-agius4clydin
authored andcommitted
refactor: change UPDATE action color to cyan
1 parent a21eb15 commit 64cc005

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/angular/cli/commands/update-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class UpdateCommand extends Command<UpdateCommandSchema> {
100100
this.logger.error(`ERROR! ${eventPath} ${desc}.`);
101101
break;
102102
case 'update':
103-
logs.push(`${colors.whiteBright('UPDATE')} ${eventPath} (${event.content.length} bytes)`);
103+
logs.push(`${colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)`);
104104
files.add(eventPath);
105105
break;
106106
case 'create':

packages/angular/cli/models/schematic-command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ export abstract class SchematicCommand<
501501
break;
502502
case 'update':
503503
loggingQueue.push(tags.oneLine`
504-
${colors.white('UPDATE')} ${eventPath} (${event.content.length} bytes)
504+
${colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)
505505
`);
506506
break;
507507
case 'create':

packages/angular_devkit/schematics_cli/bin/schematics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ export async function main({
217217
break;
218218
case 'update':
219219
loggingQueue.push(tags.oneLine`
220-
${colors.white('UPDATE')} ${eventPath} (${event.content.length} bytes)
220+
${colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)
221221
`);
222222
break;
223223
case 'create':

0 commit comments

Comments
 (0)