Skip to content

Commit

Permalink
fix: use pg ^8 in init command
Browse files Browse the repository at this point in the history
without postgres v8+ nodejs 14+ will hang
  • Loading branch information
drnic committed Oct 25, 2020
1 parent 82df614 commit 6ed9906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/InitCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ Steps to run this project:
break;
case "postgres":
case "cockroachdb":
packageJson.dependencies["pg"] = "^7.3.0";
packageJson.dependencies["pg"] = "^8.4.0";
break;
case "sqlite":
packageJson.dependencies["sqlite3"] = "^4.0.3";
Expand Down

0 comments on commit 6ed9906

Please sign in to comment.