fix(core): update

This commit is contained in:
Philipp Kunz 2019-10-02 10:56:02 +02:00
parent 40cf6f72ce
commit 0286312855
3 changed files with 349 additions and 420 deletions

755
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -19,16 +19,16 @@
"build": "(tsbuild)" "build": "(tsbuild)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.11", "@gitzone/tsbuild": "^2.1.17",
"@pushrocks/tapbundle": "^3.0.9" "@pushrocks/tapbundle": "^3.0.13"
}, },
"dependencies": { "dependencies": {
"@gitzone/tsrun": "^1.2.6", "@gitzone/tsrun": "^1.2.8",
"@pushrocks/consolecolor": "^2.0.1", "@pushrocks/consolecolor": "^2.0.1",
"@pushrocks/smartfile": "^7.0.2", "@pushrocks/smartfile": "^7.0.6",
"@pushrocks/smartlog": "^2.0.19", "@pushrocks/smartlog": "^2.0.19",
"@pushrocks/smartpromise": "^3.0.2", "@pushrocks/smartpromise": "^3.0.6",
"@pushrocks/smartshell": "^2.0.22", "@pushrocks/smartshell": "^2.0.25",
"@types/figures": "^3.0.1", "@types/figures": "^3.0.1",
"figures": "^3.0.0" "figures": "^3.0.0"
} }

View File

@ -41,7 +41,7 @@ export class TestDirectory {
private async _init() { private async _init() {
this.testfileArray = await plugins.smartfile.fs.fileTreeToObject( this.testfileArray = await plugins.smartfile.fs.fileTreeToObject(
plugins.path.join(this.cwd, this.relativePath), plugins.path.join(this.cwd, this.relativePath),
'**/*.ts' 'test*.ts'
); );
} }