fix(core): switch to @pushrocks/smartpromise

This commit is contained in:
Philipp Kunz 2018-07-02 23:15:24 +02:00
parent ec3e296d73
commit 585703fc55
4 changed files with 12 additions and 4 deletions

8
package-lock.json generated
View File

@ -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

@ -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');