fix(core): switch to @pushrocks/smartpromise

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

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