Skip to content

Commit 5d6af64

Browse files
committed
refactor(logger): Log skipped projects/tasks info in grey color
1 parent 96c3a5f commit 5d6af64

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/logger/lib/writers/Console.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)