We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a85a27 commit c624773Copy full SHA for c624773
1 file changed
scripts/build.js
@@ -570,4 +570,10 @@ async function main() {
570
console.log(`${chalk.green('✓')} Min: ${fontsMinCssPath}`);
571
}
572
573
-main();
+main().then(() => {
574
+ console.log('Build script completed successfully.');
575
+ process.exit(0);
576
+}).catch(err => {
577
+ console.error('Build script failed:', err);
578
+ process.exit(1);
579
+});
0 commit comments