File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
angular_devkit/schematics_cli/bin Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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' :
Original file line number Diff line number Diff 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' :
Original file line number Diff line number Diff 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' :
You can’t perform that action at this time.
0 commit comments