Skip to content

Commit

Permalink
Add 'raw' option in start.ts concurrently call so output is properly …
Browse files Browse the repository at this point in the history
…shown
  • Loading branch information
Timothy Wang committed Jul 18, 2024
1 parent 4efa278 commit 18e2c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/start/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ export async function start(options: SWACLIConfig) {
},
});

const concurrentlyOptions: Partial<ConcurrentlyOptions> = { restartTries: 0, killOthers: ["failure", "success"] };
const concurrentlyOptions: Partial<ConcurrentlyOptions> = { restartTries: 0, killOthers: ["failure", "success"], raw: true };
const { result } = concurrently(concurrentlyCommands, concurrentlyOptions);

await result
Expand Down

0 comments on commit 18e2c1c

Please sign in to comment.