Reputation: 449
Is there a way for me to run npm install and then gulp when deploying a Clojure app to heroku?
Upvotes: 0
Views: 168
Reputation: 10318
You will probably want to use Heroku's Multi-buildpack with the Node.js and Clojure buildpacks. This is documented for Java and Scala.
Upvotes: 1
Reputation: 16871
You can use npm's scripts in your package.json. See https://devcenter.heroku.com/articles/nodejs-support#customizing-the-build-process
Upvotes: 0