2 Commits

Author SHA1 Message Date
628b86cf3d 2.0.9 2019-06-19 14:24:09 +02:00
d0c6ebb0df fix(core): update 2019-06-19 14:24:08 +02:00
4 changed files with 11 additions and 8 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tools",
"version": "2.0.8",
"version": "2.0.9",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tools",
"version": "2.0.8",
"version": "2.0.9",
"private": false,
"description": "setup your environment with the most important tools and update them easily.",
"main": "dist/index.js",

View File

@ -1,2 +1,3 @@
import plugins = require('./tools.plugins');
import * as cli from './tools.cli';
cli.run();

View File

@ -1,6 +1,7 @@
import * as plugins from './tools.plugins';
import * as toolsInstall from './tools.install';
export const run = async () => {
const toolsCli = new plugins.smartcli.Smartcli();
toolsCli.addCommand('install').subscribe(async argvArg => {
@ -9,3 +10,4 @@ toolsCli.addCommand('install').subscribe(async argvArg => {
toolsCli.addVersion('no version set');
toolsCli.startParse();
};