This repository was archived by the owner on Jun 19, 2025. It is now read-only.
This repository was archived by the owner on Jun 19, 2025. It is now read-only.
Update peerDependencies to support NestJS 11 #739
Open
Description
Description
Currently, nest-raven
specifies "@nestjs/common": "^10.0.0"
in its peerDependencies
, which causes conflicts when using NestJS 11.
Issue
When installing nest-raven
with NestJS 11, npm
throws a dependency resolution error:
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! While resolving: [email protected]
npm ERR! Found: @nestjs/[email protected]
npm ERR! node_modules/@nestjs/common
npm ERR! @nestjs/common@"^11.0.9" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer @nestjs/common@"^10.0.0" from [email protected]
npm ERR! node_modules/nest-raven
npm ERR! nest-raven@"10.1.0" from the root project
Suggested Fix
Please update the peerDependencies
in package.json
to support NestJS 11:
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@sentry/node": "*",
"rxjs": "*"
}
This will allow users to install the package without dependency conflicts while maintaining compatibility with NestJS 10.
Thank you! 🚀
Metadata
Metadata
Assignees
Labels
No labels