Skip to content

Commit

Permalink
fix #336
Browse files Browse the repository at this point in the history
  • Loading branch information
silkentrance committed Nov 11, 2022
1 parent 04f0f9f commit b50fe70
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 18 deletions.
12 changes: 1 addition & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,8 @@
"url": "https://github.com/testdeck/testdeck.git"
},
"devDependencies": {
"@types/chai": "latest",
"@types/chai-as-promised": "latest",
"chai": "latest",
"chai-as-promised": "latest",
"jasmine": "latest",
"jest": "latest",
"lerna": "latest",
"lerna-changelog": "latest",
"mocha": "latest",
"nyc": "latest",
"tslint": "latest",
"typescript": "latest"
"lerna-changelog": "latest"
},
"scripts": {
"postinstall": "lerna bootstrap --no-ci",
Expand Down
10 changes: 9 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,15 @@
"all": true
},
"devDependencies": {
"@types/mocha": "latest"
"@types/chai": "latest",
"@types/chai-as-promised": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"chai": "latest",
"chai-as-promised": "latest",
"mocha": "latest",
"tslint": "latest",
"typescript": "latest"
},
"publishConfig": {
"access": "public"
Expand Down
15 changes: 12 additions & 3 deletions packages/di-typedi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,18 @@
},
"devDependencies": {
"@testdeck/mocha": "^0.3.2",
"@types/mocha": "^9.0.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0"
"@types/chai": "latest",
"@types/chai-as-promised": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"chai": "latest",
"chai-as-promised": "latest",
"mocha": "latest",
"nyc": "latest",
"reflect-metadata": "latest",
"tslint": "latest",
"typescript": "latest",
"typedi": "latest"
},
"files": [
"dist/index.js",
Expand Down
1 change: 1 addition & 0 deletions packages/di-typedi/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class SomeService {
}

@suite
@Service()
class Hello {

public constructor(private service: SomeService) {
Expand Down
10 changes: 9 additions & 1 deletion packages/jasmine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,15 @@
"@testdeck/core": "^0.3.2"
},
"devDependencies": {
"@types/jasmine": "latest"
"@types/chai": "latest",
"@types/chai-as-promised": "latest",
"@types/jasmine": "latest",
"@types/node": "latest",
"chai": "latest",
"chai-as-promised": "latest",
"jasmine": "latest",
"tslint": "latest",
"typescript": "latest"
},
"files": [
"dist/index.js",
Expand Down
10 changes: 9 additions & 1 deletion packages/jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,15 @@
"@testdeck/core": "^0.3.2"
},
"devDependencies": {
"@types/jest": "latest"
"@types/chai": "latest",
"@types/chai-as-promised": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"chai": "latest",
"chai-as-promised": "latest",
"jest": "latest",
"tslint": "latest",
"typescript": "latest"
},
"files": [
"dist/index.js",
Expand Down
11 changes: 10 additions & 1 deletion packages/mocha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,16 @@
"all": true
},
"devDependencies": {
"@types/mocha": "latest"
"@types/chai": "latest",
"@types/chai-as-promised": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"chai": "latest",
"chai-as-promised": "latest",
"mocha": "latest",
"nyc": "latest",
"tslint": "latest",
"typescript": "latest"
},
"files": [
"bin/watch",
Expand Down
2 changes: 2 additions & 0 deletions packages/vitest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
"@testdeck/core": "^0.3.2"
},
"devDependencies": {
"tslint": "latest",
"typescript": "latest",
"vite": "latest",
"vitest": "latest"
},
Expand Down

0 comments on commit b50fe70

Please sign in to comment.