Skip to content

Commit

Permalink
chore: simplify develop scripts (#50765)
Browse files Browse the repository at this point in the history
  • Loading branch information
ojeytonwilliams committed Jun 21, 2023
1 parent ac209a7 commit 9d20e93
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"build": "cross-env NODE_OPTIONS=\"--max-old-space-size=7168\" gatsby build --prefix-paths",
"build:workers": "cross-env NODE_OPTIONS=\"--max-old-space-size=7168\" webpack --config ./webpack-workers.js",
"clean": "gatsby clean",
"predevelop": "pnpm -w run create:config && pnpm run build:workers --env development",
"predevelop": "pnpm run build:workers --env development",
"develop": "cross-env NODE_OPTIONS=\"--max-old-space-size=5000\" gatsby develop --inspect=9230",
"lint": "ts-node ./i18n/schema-validation.ts",
"serve": "gatsby serve -p 8000",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
"cypress:dev:watch": "pnpm run cypress open",
"cypress:install": "cypress install && echo 'for use with ./cypress-install.js'",
"cypress:install-build-tools": "sh ./cypress-install.sh",
"predevelop": "npm-run-all create:*",
"develop": "npm-run-all build:curriculum -p develop:*",
"develop:client": "pnpm run build:curriculum && cd ./client && pnpm run develop",
"develop:server": "pnpm run predevelop && cd ./api-server && pnpm run develop",
"predevelop": "npm-run-all -p create:* build:curriculum",
"develop": "npm-run-all -p develop:*",
"develop:client": "cd ./client && pnpm run develop",
"develop:server": "cd ./api-server && pnpm run develop",
"docs:serve": "docsify serve ./docs -o --port 3400",
"e2e": "pnpm run e2e:dev:run",
"e2e:dev:run": "start-test develop 'localhost:3000/status/ping|localhost:8000' cypress:dev:run",
Expand Down

0 comments on commit 9d20e93

Please sign in to comment.