fix(v2): do not force terminate building when bundle analyzer is on (#2462)

This commit is contained in:
Alexey Pyltsyn 2020-03-24 19:52:47 +03:00 committed by GitHub
parent b0933364d4
commit c2fd6520ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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