tsbundle/ts/tsbundle.cli.ts

74 lines
2.6 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:
2021-07-22 19:55:08 +00:00
await tsbundle.buildProduction(process.cwd(), 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:
2021-07-23 13:45:23 +00:00
await tsbundle.buildTest(process.cwd(), argvArg.from, argvArg.to, 'rollup');
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:
2021-07-22 19:55:08 +00:00
await tsbundle.buildProduction(process.cwd(), './ts_web/index.ts', './dist_bundle/bundle.js');
2020-03-09 14:36:55 +00:00
// await htmlHandler.minifyHtml();
break;
case argvArg.test:
default:
2021-07-23 13:45:23 +00:00
await tsbundle.buildTest(process.cwd(), './ts_web/index.ts', './dist_bundle/bundle.js', 'rollup');
2020-03-09 14:36:55 +00:00
// await htmlHandler.copyHtml();
return;
}
});
2020-05-25 16:29:22 +00:00
tsBundleCli.addCommand('npm').subscribe(async argvArg => {
const tsbundle = new TsBundle();
// const htmlHandler = new HtmlHandler();
switch (true) {
case argvArg.production || process.env.CI:
2021-07-22 19:55:08 +00:00
await tsbundle.buildProduction(process.cwd(), './ts/index.ts', './dist_bundle/bundle.js');
2020-05-25 16:29:22 +00:00
// await htmlHandler.minifyHtml();
break;
case argvArg.test:
default:
2021-07-23 13:45:23 +00:00
await tsbundle.buildTest(process.cwd(), './ts/index.ts', './dist_bundle/bundle.js', 'rollup');
2020-05-25 16:29:22 +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:
2021-07-22 19:55:08 +00:00
await tsbundle.buildProduction(process.cwd(), './ts_web/index.ts', './dist_serve/bundle.js');
2020-03-14 22:40:09 +00:00
await htmlHandler.minifyHtml();
break;
case argvArg.test:
default:
2021-07-23 13:45:23 +00:00
await tsbundle.buildTest(process.cwd(), './ts_web/index.ts', './dist_serve/bundle.js', 'rollup');
2020-03-14 22:40:09 +00:00
await htmlHandler.copyHtml();
return;
}
});
2019-06-16 15:02:38 +00:00
tsBundleCli.startParse();
};