Skip to content

Commit

Permalink
Merge pull request #215 from woowabros/feature/nestjs-10.x
Browse files Browse the repository at this point in the history
feat: nestjs 10.x
  • Loading branch information
jiho-kr authored Jun 30, 2023
2 parents 113a23e + 9c87449 commit c934833
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 129 deletions.
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,57 +60,57 @@
}
},
"dependencies": {
"@nestjs/common": "^9.4.0",
"@nestjs/core": "^9.4.0",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/swagger": "^7.0.0",
"@nestjs/common": "^10.0.3",
"@nestjs/core": "^10.0.3",
"@nestjs/platform-express": "^10.0.3",
"@nestjs/swagger": "^7.0.11",
"@nestjs/typeorm": "^10.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"express": "^4.18.2",
"lodash": "^4.17.21",
"qs": "6.11.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"tslib": "^2.4.1",
"typeorm": "^0.3.11"
"rxjs": "^7.8.1",
"tslib": "^2.6.0",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/types": "^17.4.0",
"@nestjs/testing": "^9.4.0",
"@types/express": "^4.17.16",
"@nestjs/testing": "^10.0.3",
"@types/express": "^4.17.17",
"@types/jest": "29.5.2",
"@types/lodash": "^4.14.191",
"@types/lodash": "^4.14.195",
"@types/node": "20.3.2",
"@types/qs": "^6.9.7",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"commitizen": "^4.3.0",
"commitlint": "^17.4.2",
"commitlint": "^17.6.6",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"dotenv": "^16.3.1",
"eslint": "~8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.0",
"husky": "^8.0.3",
"jest": "29.5.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^13.0.3",
"mongodb-memory-server": "^8.12.2",
"mysql2": "^3.1.2",
"pg": "^8.9.0",
"prettier": "^2.6.2",
"release-it": "^15.6.0",
"sqlite3": "^5.1.2",
"supertest": "^6.3.1",
"jsonc-eslint-parser": "^2.3.0",
"lint-staged": "^13.2.3",
"mongodb-memory-server": "^8.13.0",
"mysql2": "^3.4.2",
"pg": "^8.11.1",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.1.3"
"typescript": "^5.1.3"
}
}
1 change: 1 addition & 0 deletions src/lib/provider/execution-context-host.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export class ExecutionContextHost implements ExecutionContext {
return Object.assign(this, {
getClient: () => this.getArgByIndex(0),
getData: () => this.getArgByIndex(1),
getPattern: () => this.getArgByIndex(2),
});
}
}
Loading

0 comments on commit c934833

Please sign in to comment.