Skip to content

Commit

Permalink
ID-48 Split heroku script to heroku:build and heroku:start
Browse files Browse the repository at this point in the history
We are using render.com to host development deployment, which needs separate build and start steps.
  • Loading branch information
robertsopko committed May 24, 2023
1 parent e318d1f commit 9bf9eb9
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 @@ -10,7 +10,9 @@
"preinstall": "node bin/check-nvmrc.js",
"prestart": "node bin/check-nvmrc.js",
"start": "gulp dev",
"heroku": "gulp copy-assets && gulp copy:appAssets && gulp sassdoc && node app/start.js",
"heroku:build": "gulp copy-assets && gulp copy:appAssets && gulp sassdoc",
"heroku:start": "node app/start.js",
"heroku": "npm run heroku:build && npm run heroku:start",
"pre-release": "node bin/check-nvmrc.js && ./bin/pre-release.sh",
"release": "node bin/check-nvmrc.js && ./bin/release.sh",
"release-to-branch": "node bin/check-nvmrc.js && ./bin/release-to-branch.sh",
Expand Down

0 comments on commit 9bf9eb9

Please sign in to comment.