fix(core): update

This commit is contained in:
Philipp Kunz 2020-05-25 16:40:33 +00:00
parent bd9ec3b313
commit 1b91c7a46c

View File

@ -42,12 +42,12 @@ export const runCli = async () => {
// const htmlHandler = new HtmlHandler(); // const htmlHandler = new HtmlHandler();
switch (true) { switch (true) {
case argvArg.production || process.env.CI: case argvArg.production || process.env.CI:
await tsbundle.buildProduction('./ts/index.ts', './dist_ts/bundle.js'); await tsbundle.buildProduction('./ts/index.ts', './dist_bundle/bundle.js');
// await htmlHandler.minifyHtml(); // await htmlHandler.minifyHtml();
break; break;
case argvArg.test: case argvArg.test:
default: default:
await tsbundle.buildTest('./ts/index.ts', './dist_ts/bundle.js'); await tsbundle.buildTest('./ts/index.ts', './dist_bundle/bundle.js');
// await htmlHandler.copyHtml(); // await htmlHandler.copyHtml();
return; return;
} }