fix(build): Exit build process instead of throwing an exception
This commit is contained in:
parent
1283ece760
commit
5b52350ae0
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue