Skip to content

Commit

Permalink
chore(nestjs): add 9.X.X compatibility #488
Browse files Browse the repository at this point in the history
ISSUES CLOSED: #488
  • Loading branch information
VPecquerie committed Jul 18, 2022
1 parent 4fe4e37 commit 18ec4f0
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
8 changes: 8 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.

tasks:
- init: npm install


7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## CONTRIBUTING

- Fork this repo and clone the forked on your local environment
- Run `npm install` to install all dependencies
- Run `npx husky install` to enable commit hooks
- [Install **pnpm**](https://pnpm.io/installation)
- Run `pnpm install` to install all dependencies
- Run `npx husky install` to enable commit hooks
- Start working on changes

### Structure
Expand All @@ -26,7 +27,7 @@ _packages

### Test your changes

- Run `npm run test:all` to run all test suites.
- Run `npm run test` to run all test suites.

### Commit

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
},
"devDependencies": {
"@mikro-orm/core": "5.2.3",
"@nestjs/common": "~8.4.7",
"@nestjs/core": "~8.4.7",
"@nestjs/platform-express": "~8.4.7",
"@nestjs/schematics": "~8.0.11",
"@nestjs/testing": "~8.4.7",
"@nestjs/common": "~9.0.2",
"@nestjs/core": "~9.0.2",
"@nestjs/platform-express": "~9.0.2",
"@nestjs/schematics": "~9.0.1",
"@nestjs/testing": "~9.0.2",
"@nrwl/devkit": "14.4.2",
"@nrwl/eslint-plugin-nx": "14.4.2",
"@nrwl/jest": "14.4.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/nestjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"peerDependencies": {
"@automapper/core": "latest",
"@nestjs/common": "^7.0.0 || ^8.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0"
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0"
},
"sideEffects": false,
"engines": {
Expand Down

0 comments on commit 18ec4f0

Please sign in to comment.