Skip to content

Commit

Permalink
Update to typescript v5 (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienGllmt authored Sep 23, 2023
1 parent 0ef9385 commit 812cdbb
Show file tree
Hide file tree
Showing 35 changed files with 4,964 additions and 5,382 deletions.
2 changes: 1 addition & 1 deletion admin-panel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@vitejs/plugin-react": "^1.3.0",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.3",
"typescript": "^4.7.4",
"typescript": "^5.2.2",
"vite": "^2.9.9"
}
}
6 changes: 3 additions & 3 deletions batcher/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"type": "module",
"types": "build/index.d.ts",
"scripts": {
"generate": "pgtyped -w -c pgtypedconfig.json"
"generate": "npx pgtyped -w -c pgtypedconfig.json"
},
"dependencies": {
"@pgtyped/query": "^1.0.0"
"@pgtyped/runtime": "2.1.0"
},
"devDependencies": {
"@pgtyped/cli": "^1.0.0"
"@pgtyped/cli": "^2.2.1"
}
}
11 changes: 5 additions & 6 deletions batcher/db/pgtypedconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@
"failOnError": false,
"camelCaseColumnNames": false,
"db": {
"dbName": "paima_catapult_batcher",
"user": "paima",
"password": "pi",
"dbName": "postgres",
"user": "postgres",
"password": "postgres",
"host": "localhost",
"port": 5432,
"ssl": false,
"dbUrl": "postgres://paima:pi@localhost/paima_catapult_batcher"
"port": 5532,
"ssl": false
}
}
Loading

0 comments on commit 812cdbb

Please sign in to comment.