BeerMoneyDev / nest-aws-sdk

A thin wrapping layer around the aws-sdk package for clean NestJS dependency injection.
MIT License
92 stars 13 forks source link

Support for NestJS 9 #15

Closed nolawnchairs closed 2 years ago

nolawnchairs commented 2 years ago

Peer dependencies for NestJS are locked to specific versions:

"peerDependencies": {
    "@nestjs/common": "^7.0.0 || ^8.0.0",
    "@nestjs/core": "^7.0.0 || ^8.0.0",
    ...
}

It's safe to assume that the mechanics required for your library to function will not change enough between versions, so it could be better to do this:

"peerDependencies": {
    "@nestjs/common": ">= 7.0.0",
    "@nestjs/core": ">= 7.0.0",
    ...
}
Mateozmaldonado17 commented 2 years ago

I have the same problem :/

KerryRitter commented 2 years ago

Merged

nkusibojoski commented 1 year ago

@KerryRitter can you please also update the "rimraf": "^3.0.2" version? Currently, the rimraf version is "4.1.1" and it is causing dependency issues when trying to run npm i.