Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to Node.js v20 #71

Merged
merged 12 commits into from
Jul 14, 2024
Prev Previous commit
Next Next commit
Rollback webapp startup script
  • Loading branch information
teekay committed Jul 14, 2024
commit df2a533a1fa2147a6b631bdfefa6b38104b2b498
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -23,8 +23,8 @@
"prettier-format": "prettier --config .prettierrc \"{,!(node_modules|build)/**/}*.ts\" --write",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint \"./src/**/*.ts\" --fix",
"prestart-app": "node ./build/src/cli.js db:migrate",
"start-app": "node ./build/src/web.js",
"prestart": "node ./build/src/cli.js db:migrate",
"start": "node ./build/src/web.js",
"start-api": "node ./build/src/api.js",
"watch": "tsc -p tsconfig.json -w",
"func": "func start --verbose",