2018-10-28 00:48:43 +00:00
|
|
|
import * as plugins from './tswatch.plugins';
|
|
|
|
import * as paths from './tswatch.paths';
|
2019-05-08 09:14:57 +00:00
|
|
|
import { logger } from './tswatch.logging';
|
2018-10-28 00:48:43 +00:00
|
|
|
|
|
|
|
import { TsWatch } from './tswatch.classes.tswatch';
|
|
|
|
|
|
|
|
const tswatchCli = new plugins.smartcli.Smartcli();
|
|
|
|
|
2019-05-08 09:14:57 +00:00
|
|
|
// standard behaviour will assume gitzone setup
|
|
|
|
|
2019-05-08 22:08:40 +00:00
|
|
|
tswatchCli.addCommand('test').subscribe(async argvArg => {
|
2019-05-08 09:14:57 +00:00
|
|
|
logger.log('info', `running test task`);
|
2019-05-08 22:08:40 +00:00
|
|
|
const tsWatch = new TsWatch('test');
|
|
|
|
await tsWatch.start();
|
2018-10-28 00:48:43 +00:00
|
|
|
});
|
|
|
|
|
2019-05-13 07:48:35 +00:00
|
|
|
tswatchCli.addCommand('website').subscribe(async argvArg => {
|
|
|
|
logger.log('info', `running watch task for a gitzone website project`);
|
|
|
|
const tsWatch = new TsWatch('gitzone_website');
|
|
|
|
await tsWatch.start();
|
2019-05-22 14:45:48 +00:00
|
|
|
});
|
2019-05-13 07:48:35 +00:00
|
|
|
|
2019-10-12 13:07:44 +00:00
|
|
|
tswatchCli.addCommand('element').subscribe(async argvArg => {
|
|
|
|
logger.log('info', `running watch task for a gitzone element project`);
|
|
|
|
const tsWatch = new TsWatch('gitzone_element');
|
|
|
|
await tsWatch.start();
|
|
|
|
});
|
|
|
|
|
2018-10-28 00:48:43 +00:00
|
|
|
tswatchCli.startParse();
|