Skip to content

Commit

Permalink
fix: reflect metadata smaller then 1
Browse files Browse the repository at this point in the history
  • Loading branch information
qballer committed Oct 18, 2024
1 parent 21a097d commit 957443e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
"madge": "^7.0.0",
"micromatch": "4.0.6",
"prettier": "^3.2.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"sinon": "^16.1.0",
Expand All @@ -78,6 +77,9 @@
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"engines": {
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/di/inversify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"dependencies": {
"@suites/types.common": "^3.0.0",
"@suites/types.di": "^3.0.0",
"lodash.isequal": "^4.5.0",
"reflect-metadata": "^0.1.13"
"lodash.isequal": "^4.5.0"
},
"peerDependencies": {
"inversify": ">= 6.0"
"inversify": ">= 6.0",
"reflect-metadata": "<1.0.0"
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.6",
Expand Down
6 changes: 3 additions & 3 deletions packages/di/nestjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
],
"dependencies": {
"@suites/types.common": "^3.0.0",
"@suites/types.di": "^3.0.0",
"reflect-metadata": "^0.1.13"
"@suites/types.di": "^3.0.0"
},
"peerDependencies": {
"@nestjs/common": ">= 8.0"
"@nestjs/common": ">= 8.0",
"reflect-metadata": "<1.0.0"
},
"devDependencies": {
"@nestjs/common": "^10.3.9",
Expand Down

0 comments on commit 957443e

Please sign in to comment.