8 Commits

Author SHA1 Message Date
74c0d537cc 2.0.10 2019-06-19 14:40:59 +02:00
c4706e96cb fix(core): update 2019-06-19 14:40:59 +02:00
628b86cf3d 2.0.9 2019-06-19 14:24:09 +02:00
d0c6ebb0df fix(core): update 2019-06-19 14:24:08 +02:00
dd8c30e7cf 2.0.8 2019-06-19 13:59:38 +02:00
8f861d86c9 fix(core): update 2019-06-19 13:59:37 +02:00
fe2581b533 2.0.7 2019-06-19 13:49:57 +02:00
db906cea1a fix(core): update 2019-06-19 13:49:57 +02:00
6 changed files with 14 additions and 10 deletions

View File

@ -53,7 +53,7 @@ testLTS:
release: release:
stage: release stage: release
script: script:
- npmci node install stable - npmci node install lts
- npmci npm publish - npmci npm publish
only: only:
- tags - tags

2
package-lock.json generated
View File

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

View File

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

View File

@ -6,7 +6,8 @@
"@gitzone/tsrun", "@gitzone/tsrun",
"@gitzone/tsdocker", "@gitzone/tsdocker",
"snyk", "snyk",
"npm-check" "npm-check",
"@losslessone_private/lole"
] ]
} }

View File

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

View File

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