Skip to content

Commit

Permalink
Merge pull request #30024 from storybookjs/yann/fix-template-text-color
Browse files Browse the repository at this point in the history
Build: Update error logging colors for task details
  • Loading branch information
yannbf authored Dec 11, 2024
2 parents 133a414 + 750a57f commit 48d1d42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ async function run() {
} catch (err) {
invariant(err instanceof Error);
logger.error(
`Error running task ${picocolors.bold(getTaskKey(task))} for ${picocolors.bgMagenta(picocolors.bold(details.key))}:`
`Error running task ${picocolors.bold(getTaskKey(task))} for ${picocolors.bgCyan(picocolors.white(details.key))}:`
);
logger.error(JSON.stringify(err, null, 2));

Expand Down

0 comments on commit 48d1d42

Please sign in to comment.