fix(core): update
This commit is contained in:
16
ts/tswatch.cli.ts
Normal file
16
ts/tswatch.cli.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import * as plugins from './tswatch.plugins';
|
||||
import * as paths from './tswatch.paths';
|
||||
|
||||
import { TsWatch } from './tswatch.classes.tswatch';
|
||||
|
||||
const tswatchCli = new plugins.smartcli.Smartcli();
|
||||
|
||||
tswatchCli.addCommand('test').subscribe(argvArg => {
|
||||
const tsWatch = new TsWatch({
|
||||
filePathToWatch: paths.cwd,
|
||||
commandToExecute: 'npm run test2'
|
||||
});
|
||||
tsWatch.start();
|
||||
});
|
||||
|
||||
tswatchCli.startParse();
|
||||
Reference in New Issue
Block a user