Skip to content

Commit 82eaadc

Browse files
committed
try cyan
1 parent 39cff04 commit 82eaadc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plugin/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ function netlifyPlugin(conf) {
4242
if (resultMode === 'error') {
4343
results.forEach((res) => {
4444
console.error(
45-
`[${chalk.blue.bold(res.documentTitle)} (${path.relative(
45+
`[${chalk.cyan.bold(res.documentTitle)} (${path.relative(
4646
process.cwd(),
4747
res.pageUrl
48-
)})] ${chalk.red(res.type)} ${chalk.blue(res.typeCode)}: ${
48+
)})] ${chalk.red(res.type)} ${chalk.cyan(res.typeCode)}: ${
4949
res.message
50-
} (${chalk.blue(res.context)})`
50+
} (${chalk.cyan(res.context)})`
5151
);
5252
});
5353
build.failBuild(
@@ -58,9 +58,9 @@ function netlifyPlugin(conf) {
5858
} else {
5959
results.forEach((res) => {
6060
console.warn(
61-
`${chalk.red(res.type)} ${chalk.blue(res.typeCode)}: ${
61+
`${chalk.red(res.type)} ${chalk.cyan(res.typeCode)}: ${
6262
res.message
63-
} (${chalk.blue(res.context)})`
63+
} (${chalk.cyan(res.context)})`
6464
);
6565
});
6666
console.warn(

0 commit comments

Comments
 (0)