tsbundle/ts/tsbundle.cli.ts

58 lines
1.9 KiB
TypeScript
Raw Normal View History

2019-06-16 15:02:38 +00:00
import * as plugins from './tsbundle.plugins';
import { TsBundle } from './tsbundle.class.tsbundle';
2019-06-16 15:47:34 +00:00
import { HtmlHandler } from './tsbundle.htmlhandler';
2019-06-16 15:02:38 +00:00
import { logger } from './tsbundle.logging';
export const runCli = async () => {
const tsBundleCli = new plugins.smartcli.Smartcli();
tsBundleCli.standardTask().subscribe(async argvArg => {
const tsbundle = new TsBundle();
2020-03-14 22:40:09 +00:00
// const htmlHandler = new HtmlHandler();
2019-06-16 15:02:38 +00:00
switch (true) {
2019-07-17 10:22:24 +00:00
case argvArg.production || process.env.CI:
2019-07-19 08:52:27 +00:00
await tsbundle.buildProduction(argvArg.from, argvArg.to);
2020-03-14 22:40:09 +00:00
// await htmlHandler.minifyHtml();
2019-06-16 15:02:38 +00:00
break;
case argvArg.test:
2019-06-17 05:06:56 +00:00
default:
2019-07-19 08:52:27 +00:00
await tsbundle.buildTest(argvArg.from, argvArg.to);
2020-03-14 22:40:09 +00:00
// await htmlHandler.copyHtml();
2019-06-16 15:02:38 +00:00
return;
}
});
2020-03-09 14:36:55 +00:00
tsBundleCli.addCommand('element').subscribe(async argvArg => {
const tsbundle = new TsBundle();
// const htmlHandler = new HtmlHandler();
switch (true) {
case argvArg.production || process.env.CI:
2020-03-14 22:40:09 +00:00
await tsbundle.buildProduction('./ts_web/index.ts', './dist_bundle/bundle.js');
2020-03-09 14:36:55 +00:00
// await htmlHandler.minifyHtml();
break;
case argvArg.test:
default:
2020-03-14 22:40:09 +00:00
await tsbundle.buildTest('./ts_web/index.ts', './dist_bundle/bundle.js');
2020-03-09 14:36:55 +00:00
// await htmlHandler.copyHtml();
return;
}
});
2020-03-14 22:40:09 +00:00
tsBundleCli.addCommand('website').subscribe(async argvArg => {
const tsbundle = new TsBundle();
const htmlHandler = new HtmlHandler();
switch (true) {
case argvArg.production || process.env.CI:
await tsbundle.buildProduction('./ts_web/index.ts', './dist_serve/bundle.js');
await htmlHandler.minifyHtml();
break;
case argvArg.test:
default:
await tsbundle.buildTest('./ts_web/index.ts', './dist_serve/bundle.js');
await htmlHandler.copyHtml();
return;
}
});
2019-06-16 15:02:38 +00:00
tsBundleCli.startParse();
};