Skip to content

Commit

Permalink
Fixes the start script
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasdotcom committed Aug 15, 2023
1 parent b02a9b2 commit 172fd59
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"start": "export NODE_ENV=production APP_ENV=production && npm run start2",
"test": "npm run cypress & npm run start:test",
"start:test": "export NODE_ENV=test APP_ENV=test && npm run clean && npm run start2",
"start2": "npm run build2:ts && node scripts/startup.js && npm run build3:ts && node scripts/entrypoint.js & next build && next start",
"start2": "npm run start2:part1 && npm run start2:part2",
"start2:part1": "npm run build2:ts && node scripts/startup.js && npm run build3:ts",
"start2:part2": "node scripts/entrypoint.js & next build && next start",
"lint": "eslint . --max-warnings 0",
"pretty": "prettier --check .",
"format": "prettier --write .",
Expand Down

0 comments on commit 172fd59

Please sign in to comment.