File tree Expand file tree Collapse file tree
packages/logger/lib/writers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ class Console {
334334 }
335335 projectMetadata . buildSkipped = true ;
336336 message = `${ chalk . yellow ( figures . tick ) } ` +
337- `Skipping build of ${ projectType } project ${ chalk . bold ( projectName ) } ` ;
337+ chalk . grey ( `Skipping build of ${ projectType } project ${ chalk . bold ( projectName ) } ` ) ;
338338
339339 // Update progress bar (if used)
340340 // All tasks of this projects are completed
@@ -412,7 +412,7 @@ class Console {
412412 `Task execution already started` ) ;
413413 }
414414 taskMetadata . executionEnded = true ;
415- message = ` ${ chalk . green ( figures . tick ) } Skipping task ${ chalk . bold ( taskName ) } `;
415+ message = chalk . yellow ( figures . tick ) + chalk . grey ( ` Skipping task ${ chalk . bold ( taskName ) } `) ;
416416
417417 // Update progress bar (if used)
418418 this . _getProgressBar ( ) ?. increment ( 1 ) ;
You can’t perform that action at this time.
0 commit comments