fix(core): update to latest standards

This commit is contained in:
Philipp Kunz 2018-07-02 23:09:52 +02:00
parent e7ec765ed5
commit 33f234cf73
3 changed files with 2361 additions and 14 deletions

2347
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -23,30 +23,30 @@
},
"homepage": "https://gitlab.com/gitzone/npmci#README",
"devDependencies": {
"tapbundle": "^2.0.0"
"tapbundle": "^2.0.2"
},
"dependencies": {
"@pushrocks/smartcli": "^3.0.1",
"@types/lodash": "^4.14.74",
"@types/shelljs": "^0.7.4",
"@pushrocks/smartcli": "^3.0.2",
"@types/lodash": "^4.14.110",
"@types/shelljs": "^0.8.0",
"@types/through2": "^2.0.33",
"beautylog": "^6.1.10",
"cflare": "^1.0.5",
"lik": "^2.0.5",
"lodash": "^4.17.4",
"lodash": "^4.17.10",
"npmextra": "^2.0.9",
"projectinfo": "^3.0.2",
"request": "^2.81.0",
"shelljs": "^0.8.1",
"projectinfo": "^3.0.4",
"request": "^2.87.0",
"shelljs": "^0.8.2",
"smartanalytics": "^2.0.9",
"smartdelay": "^1.0.3",
"smartdelay": "^1.0.4",
"smartfile": "^4.2.20",
"smartparam": "^1.0.2",
"smartq": "^1.1.6",
"smartshell": "^1.0.18",
"smartsocket": "^1.1.10",
"smartshell": "^1.0.19",
"smartsocket": "^1.1.19",
"smartssh": "^1.2.2",
"smartstring": "^2.0.24",
"smartstring": "^2.0.28",
"smartsystem": "^2.0.2",
"through2": "^2.0.3"
},

View File

@ -34,11 +34,11 @@ export let install = async versionArg => {
plugins.beautylog.log(`now installing node version ${versionArg}`);
let version: string;
if (versionArg === 'stable') {
version = '9';
version = '10';
} else if (versionArg === 'lts') {
version = '8';
} else if (versionArg === 'legacy') {
version = '8';
version = '9';
} else {
version = versionArg;
}