Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
74c0d537cc | |||
c4706e96cb | |||
628b86cf3d | |||
d0c6ebb0df | |||
dd8c30e7cf | |||
8f861d86c9 | |||
fe2581b533 | |||
db906cea1a |
@ -53,7 +53,7 @@ testLTS:
|
||||
release:
|
||||
stage: release
|
||||
script:
|
||||
- npmci node install stable
|
||||
- npmci node install lts
|
||||
- npmci npm publish
|
||||
only:
|
||||
- tags
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gitzone/tools",
|
||||
"version": "2.0.6",
|
||||
"version": "2.0.10",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@gitzone/tools",
|
||||
"version": "2.0.6",
|
||||
"version": "2.0.10",
|
||||
"private": false,
|
||||
"description": "setup your environment with the most important tools and update them easily.",
|
||||
"main": "dist/index.js",
|
||||
|
@ -6,7 +6,8 @@
|
||||
"@gitzone/tsrun",
|
||||
"@gitzone/tsdocker",
|
||||
"snyk",
|
||||
"npm-check"
|
||||
"npm-check",
|
||||
"@losslessone_private/lole"
|
||||
]
|
||||
|
||||
}
|
@ -1,2 +1,3 @@
|
||||
import plugins = require('./tools.plugins');
|
||||
import * as cli from './tools.cli';
|
||||
cli.run();
|
||||
|
@ -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();
|
||||
};
|
||||
|
Reference in New Issue
Block a user