fix(core): update

This commit is contained in:
2019-07-17 12:22:24 +02:00
parent a98471e914
commit ca6ef86c8c
5 changed files with 13 additions and 19 deletions

View File

@@ -9,7 +9,7 @@ export const runCli = async () => {
const tsbundle = new TsBundle();
const htmlHandler = new HtmlHandler();
switch (true) {
case (argvArg.production) || process.env.CI:
case argvArg.production || process.env.CI:
await tsbundle.buildProduction();
await htmlHandler.minifyHtml();
break;