From f6d69baf142a8eb54c24d2e6dfaf8040f9625571 Mon Sep 17 00:00:00 2001 From: Henry Ing-Simmons Date: Wed, 14 May 2025 17:08:06 +0100 Subject: [PATCH] chore(core): replace red in console with blue (#29026) ## Current Behavior Red is used as a colour when running multiple processes in the command line. This causes confusion as red is universally the colour for danger/errors. ## Expected Behavior Red should not be a colour in the console and blue should be used instead. ## Related Issue(s) Fixes #19901 --- .../nx/src/tasks-runner/running-tasks/node-child-process.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nx/src/tasks-runner/running-tasks/node-child-process.ts b/packages/nx/src/tasks-runner/running-tasks/node-child-process.ts index 8411207979..554a62824f 100644 --- a/packages/nx/src/tasks-runner/running-tasks/node-child-process.ts +++ b/packages/nx/src/tasks-runner/running-tasks/node-child-process.ts @@ -113,8 +113,8 @@ function addPrefixTransformer(prefix?: string) { const colors = [ chalk.green, chalk.greenBright, - chalk.red, - chalk.redBright, + chalk.blue, + chalk.blueBright, chalk.cyan, chalk.cyanBright, chalk.yellow,