Compare commits

...

4 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
5 changed files with 27 additions and 6 deletions

13
.snyk
View File

@@ -6,10 +6,23 @@ ignore:
- shelljs:
reason: None given
expires: '2018-06-02T22:48:10.660Z'
smartshell > shelljs:
reason: None given
expires: '2018-08-14T21:49:25.248Z'
- smartshell > shelljs:
reason: None given
expires: '2018-06-02T22:48:10.660Z'
smartssh > shelljs:
reason: None given
expires: '2018-08-14T21:49:25.248Z'
- smartssh > shelljs:
reason: None given
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: {}

10
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "@shipzone/npmci",
"version": "3.0.51",
"version": "3.0.53",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@@ -28,6 +28,14 @@
"yargs": "^11.0.0"
}
},
"@pushrocks/smartpromise": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@pushrocks/smartpromise/-/smartpromise-2.0.2.tgz",
"integrity": "sha512-Rr4aLO2spAQ58TB9l3UwVs+keQu7gPXcYSO/5zLYNimEP7H237tFApX/qk80nwvHh2ATTBTgu0IcWKhHb5uVow==",
"requires": {
"util.promisify": "^1.0.0"
}
},
"@types/chai": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.1.4.tgz",

View File

@@ -1,6 +1,6 @@
{
"name": "@shipzone/npmci",
"version": "3.0.51",
"version": "3.0.53",
"description": "node and docker in gitlab ci on steroids",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
@@ -27,6 +27,7 @@
},
"dependencies": {
"@pushrocks/smartcli": "^3.0.2",
"@pushrocks/smartpromise": "^2.0.2",
"@types/lodash": "^4.14.110",
"@types/shelljs": "^0.8.0",
"@types/through2": "^2.0.33",
@@ -42,7 +43,6 @@
"smartdelay": "^1.0.4",
"smartfile": "^4.2.20",
"smartparam": "^1.0.2",
"smartq": "^1.1.6",
"smartshell": "^1.0.19",
"smartsocket": "^1.1.19",
"smartssh": "^1.2.2",

View File

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

View File

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