fix(core): update

This commit is contained in:
Philipp Kunz 2021-11-07 19:18:01 +01:00
parent 9ba5447e72
commit b304b01ab6
4 changed files with 2748 additions and 1558 deletions

4293
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -24,17 +24,17 @@
},
"homepage": "https://gitlab.com/pushrocks/smartshell#README",
"devDependencies": {
"@gitzone/tsbuild": "^2.1.26",
"@gitzone/tsrun": "^1.2.17",
"@gitzone/tstest": "^1.0.54",
"@gitzone/tsbuild": "^2.1.28",
"@gitzone/tsrun": "^1.2.18",
"@gitzone/tstest": "^1.0.59",
"@pushrocks/tapbundle": "^3.2.14",
"@types/node": "^16.6.1",
"@types/node": "^16.11.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@pushrocks/smartdelay": "^2.0.13",
"@pushrocks/smartexit": "^1.0.19",
"@pushrocks/smartexit": "^1.0.20",
"@pushrocks/smartpromise": "^3.1.6",
"@types/which": "^2.0.1",
"tree-kill": "^1.2.2",

View File

@ -1 +1,2 @@
export * from './smartshell.classes.smartshell';
export { which } from './smartshell.plugins';

View File

@ -1,7 +1,7 @@
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartexit from '@pushrocks/smartexit';
import * as smartpromise from '@pushrocks/smartpromise';
import * as which from 'which';
import which from 'which';
export { smartdelay, smartexit, smartpromise, which };