Skip to content

Commit

Permalink
fix: wrong dependency version in init command
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMesser committed Apr 6, 2023
1 parent 0194f17 commit daf1b47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/InitCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ export class UserController {
async one(request: Request, response: Response, next: NextFunction) {
const id = parseInt(request.params.id)
const user = await this.userRepository.findOne({
where: { id }
Expand Down Expand Up @@ -718,7 +718,7 @@ Steps to run this project:
packageJson.dependencies["oracledb"] = "^5.1.0"
break
case "mssql":
packageJson.dependencies["mssql"] = "^7.3.0"
packageJson.dependencies["mssql"] = "^9.1.1"
break
case "mongodb":
packageJson.dependencies["mongodb"] = "^3.0.8"
Expand Down

0 comments on commit daf1b47

Please sign in to comment.