feat(core): new tools scope

This commit is contained in:
2018-06-07 22:41:25 +02:00
parent 82b6654b94
commit f01e275044
29 changed files with 1841 additions and 1406 deletions

11
ts/tools.cli.ts Normal file
View File

@@ -0,0 +1,11 @@
import * as plugins from './tools.plugins';
import * as toolsInstall from './tools.install';
let npmgSmartcli = new plugins.smartcli.Smartcli();
npmgSmartcli.addCommand('install').subscribe(async argvArg => {
toolsInstall.install('default');
});
npmgSmartcli.addVersion('no version set');
npmgSmartcli.startParse();