fix(build): Exit build process instead of throwing an exception

This commit is contained in:
Aditya Hase 2023-06-16 12:27:30 +05:30 committed by GitHub
parent 1283ece760
commit 5b52350ae0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,7 +89,7 @@ execute()
.then(() => RUN_BUILD_COMMAND && run_build_command_for_apps(APPS))
.catch((e) => {
console.error(e);
throw e;
process.exit(1);
});
if (WATCH_MODE) {