summaryrefslogtreecommitdiff
path: root/scripts/cmd/build.js
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <my.burning@gmail.com> 2024-11-26 13:06:04 +0000
committerGravatar GitHub <noreply@github.com> 2024-11-26 13:06:04 +0000
commit8b0e36ca9187d9144dece67df6f9d58b762d9ffb (patch)
tree9becdbd29a578d0e026a29b07e82961a8a3d3b09 /scripts/cmd/build.js
parent36d8d921db05bf9222512949a64f5076904dde4d (diff)
downloadastro-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.js6
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'));
}
});
},