Compare commits

...

6 Commits

Author SHA1 Message Date
01c88a6a6c 3.0.53 2018-07-15 23:49:38 +02:00
f5cacb7400 fix(core): update 2018-07-15 23:49:37 +02:00
887da51d78 3.0.52 2018-07-02 23:15:25 +02:00
585703fc55 fix(core): switch to @pushrocks/smartpromise 2018-07-02 23:15:24 +02:00
ec3e296d73 3.0.51 2018-07-02 23:09:52 +02:00
33f234cf73 fix(core): update to latest standards 2018-07-02 23:09:52 +02:00
6 changed files with 2387 additions and 19 deletions

13
.snyk
View File

@@ -6,10 +6,23 @@ ignore:
- shelljs: - shelljs:
reason: None given reason: None given
expires: '2018-06-02T22:48:10.660Z' expires: '2018-06-02T22:48:10.660Z'
smartshell > shelljs:
reason: None given
expires: '2018-08-14T21:49:25.248Z'
- smartshell > shelljs: - smartshell > shelljs:
reason: None given reason: None given
expires: '2018-06-02T22:48:10.660Z' expires: '2018-06-02T22:48:10.660Z'
smartssh > shelljs:
reason: None given
expires: '2018-08-14T21:49:25.248Z'
- smartssh > shelljs: - smartssh > shelljs:
reason: None given reason: None given
expires: '2018-06-02T22:48:10.660Z' expires: '2018-06-02T22:48:10.660Z'
shelljs:
reason: None given
expires: '2018-08-14T21:49:25.248Z'
'npm:stringstream:20180511':
- request > stringstream:
reason: None given
expires: '2018-08-14T21:49:25.248Z'
patch: {} patch: {}

2355
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "@shipzone/npmci", "name": "@shipzone/npmci",
"version": "3.0.50", "version": "3.0.53",
"description": "node and docker in gitlab ci on steroids", "description": "node and docker in gitlab ci on steroids",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",
@@ -23,30 +23,30 @@
}, },
"homepage": "https://gitlab.com/gitzone/npmci#README", "homepage": "https://gitlab.com/gitzone/npmci#README",
"devDependencies": { "devDependencies": {
"tapbundle": "^2.0.0" "tapbundle": "^2.0.2"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartcli": "^3.0.1", "@pushrocks/smartcli": "^3.0.2",
"@types/lodash": "^4.14.74", "@pushrocks/smartpromise": "^2.0.2",
"@types/shelljs": "^0.7.4", "@types/lodash": "^4.14.110",
"@types/shelljs": "^0.8.0",
"@types/through2": "^2.0.33", "@types/through2": "^2.0.33",
"beautylog": "^6.1.10", "beautylog": "^6.1.10",
"cflare": "^1.0.5", "cflare": "^1.0.5",
"lik": "^2.0.5", "lik": "^2.0.5",
"lodash": "^4.17.4", "lodash": "^4.17.10",
"npmextra": "^2.0.9", "npmextra": "^2.0.9",
"projectinfo": "^3.0.2", "projectinfo": "^3.0.4",
"request": "^2.81.0", "request": "^2.87.0",
"shelljs": "^0.8.1", "shelljs": "^0.8.2",
"smartanalytics": "^2.0.9", "smartanalytics": "^2.0.9",
"smartdelay": "^1.0.3", "smartdelay": "^1.0.4",
"smartfile": "^4.2.20", "smartfile": "^4.2.20",
"smartparam": "^1.0.2", "smartparam": "^1.0.2",
"smartq": "^1.1.6", "smartshell": "^1.0.19",
"smartshell": "^1.0.18", "smartsocket": "^1.1.19",
"smartsocket": "^1.1.10",
"smartssh": "^1.2.2", "smartssh": "^1.2.2",
"smartstring": "^2.0.24", "smartstring": "^2.0.28",
"smartsystem": "^2.0.2", "smartsystem": "^2.0.2",
"through2": "^2.0.3" "through2": "^2.0.3"
}, },

View File

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

View File

@@ -1,12 +1,12 @@
import * as plugins from './npmci.plugins'; import * as plugins from './npmci.plugins';
import * as paths from './npmci.paths'; import * as paths from './npmci.paths';
import * as smartq from 'smartq'; import * as smartpromise from '@pushrocks/smartpromise';
/** /**
* wether nvm is available or not * wether nvm is available or not
*/ */
export let nvmAvailable = smartq.defer<boolean>(); export let nvmAvailable = smartpromise.defer<boolean>();
/** /**
* the smartshell instance for npmci * the smartshell instance for npmci
*/ */

View File

@@ -10,7 +10,7 @@ export import smartdelay = require('smartdelay');
export import smartfile = require('smartfile'); export import smartfile = require('smartfile');
export import shelljs = require('shelljs'); export import shelljs = require('shelljs');
export import smartparam = require('smartparam'); export import smartparam = require('smartparam');
export import smartq = require('smartq'); export import smartpromise = require('@pushrocks/smartpromise');
export import smartshell = require('smartshell'); export import smartshell = require('smartshell');
export import smartsocket = require('smartsocket'); export import smartsocket = require('smartsocket');
export import smartsystem = require('smartsystem'); export import smartsystem = require('smartsystem');