Skip to content

Commit

Permalink
use chalk to make errors more visible
Browse files Browse the repository at this point in the history
  • Loading branch information
delabiejochen committed Aug 30, 2021
1 parent 813adc1 commit 6be9280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default class RunProject {

private realTimeError(message: string): void {
const data: ISocketData = JSON.parse(message);
log.error(data.payload);
log.error(chalk.white.bgRed.bold(data.payload));
}

private parseSuccess(runs: IRun[]): boolean {
Expand Down

0 comments on commit 6be9280

Please sign in to comment.