Skip to content

Commit

Permalink
Merge pull request #1008 from kamronbatman/kbatman/yarn_pnp_workspace
Browse files Browse the repository at this point in the history
fix(core): Adds express/fastify to peer dependency list and makes them optional
  • Loading branch information
kamilmysliwiec committed Feb 9, 2023
2 parents 695c215 + c87d44c commit dc96f7d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,21 @@
},
"peerDependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0"
"@nestjs/core": "^9.0.0",
"express": "^4.18.1",
"fastify": "^4.7.0",
"@fastify/static": "^6.5.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"fastify": {
"optional": true
},
"@fastify/static": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
Expand Down

0 comments on commit dc96f7d

Please sign in to comment.