diff options
author | 2024-11-26 13:06:04 +0000 | |
---|---|---|
committer | 2024-11-26 13:06:04 +0000 | |
commit | 8b0e36ca9187d9144dece67df6f9d58b762d9ffb (patch) | |
tree | 9becdbd29a578d0e026a29b07e82961a8a3d3b09 /scripts/cmd/build.js | |
parent | 36d8d921db05bf9222512949a64f5076904dde4d (diff) | |
download | astro-8b0e36ca9187d9144dece67df6f9d58b762d9ffb.tar.gz astro-8b0e36ca9187d9144dece67df6f9d58b762d9ffb.tar.zst astro-8b0e36ca9187d9144dece67df6f9d58b762d9ffb.zip |
chore: fix linting warnings (#12526)
Diffstat (limited to 'scripts/cmd/build.js')
-rw-r--r-- | scripts/cmd/build.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/cmd/build.js b/scripts/cmd/build.js index e1c712993..3fd24c1da 100644 --- a/scripts/cmd/build.js +++ b/scripts/cmd/build.js @@ -101,11 +101,11 @@ export default async function build(...args) { console.error(dim(`[${date}] `) + red(error || result.errors.join('\n'))); } else { if (result.warnings.length) { - console.log( - dim(`[${date}] `) + yellow('⚠ updated with warnings:\n' + result.warnings.join('\n')), + console.info( + dim(`[${date}] `) + yellow('! updated with warnings:\n' + result.warnings.join('\n')), ); } - console.log(dim(`[${date}] `) + green('✔ updated')); + console.info(dim(`[${date}] `) + green('√ updated')); } }); }, |