Install devDependencies on Heroku
问题 I would like to have Heroku build my app after I push it so that I don't have to push the build folder up every time I make a change. However heroku only installs the dependencies from the package.json and grunt (my build tool) and all of its components are in devDependencies. I would like to keep them there where they belong. What's the workaround here? 回答1: Heroku by default installs only the production dependencies, ignoring the development dependencies under devDependencies . Setting the