fix(v2): always exit after successful build (#2443)

* fix(v2): always exit after sucessfull build

* fix(v2): exit before return
This commit is contained in:
mohrash92 2020-03-23 03:47:24 +00:00 committed by GitHub
parent 3052ef14e5
commit 264bfddf26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -147,5 +147,6 @@ export async function build(
relativeDir,
)}.\n`,
);
process.exit(0);
return outDir;
}