fix(core): update

This commit is contained in:
2019-06-16 17:47:34 +02:00
parent 6a33742e27
commit b1a5426405
7 changed files with 318 additions and 113 deletions

View File

@@ -1,17 +1,21 @@
import * as plugins from './tsbundle.plugins';
import { TsBundle } from './tsbundle.class.tsbundle';
import { HtmlHandler } from './tsbundle.htmlhandler';
import { logger } from './tsbundle.logging';
export const runCli = async () => {
const tsBundleCli = new plugins.smartcli.Smartcli();
tsBundleCli.standardTask().subscribe(async argvArg => {
const tsbundle = new TsBundle();
const htmlHandler = new HtmlHandler();
switch (true) {
case argvArg.production:
await tsbundle.buildProduction();
await htmlHandler.minifyHtml();
break;
case argvArg.test:
await tsbundle.buildTest();
await htmlHandler.copyHtml();
break;
default:
logger.log('error', `Can not determine build target environement. Please specify via --production or --test`)