From 18e2c1ce7ca1f4f79771dd19a394d19a59011b0e Mon Sep 17 00:00:00 2001 From: Timothy Wang Date: Thu, 18 Jul 2024 17:28:46 -0400 Subject: [PATCH] Add 'raw' option in start.ts concurrently call so output is properly shown --- src/cli/commands/start/start.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/commands/start/start.ts b/src/cli/commands/start/start.ts index 892ee7be..ae05b014 100644 --- a/src/cli/commands/start/start.ts +++ b/src/cli/commands/start/start.ts @@ -348,7 +348,7 @@ export async function start(options: SWACLIConfig) { }, }); - const concurrentlyOptions: Partial = { restartTries: 0, killOthers: ["failure", "success"] }; + const concurrentlyOptions: Partial = { restartTries: 0, killOthers: ["failure", "success"], raw: true }; const { result } = concurrently(concurrentlyCommands, concurrentlyOptions); await result