after creating a project with the CLI i did an npm install --production and then tried a npm run bs this is what will be done hosting a project in heroku and it failed because of dependencies, is this happening to someone else?
Actually packages in devDependencies are required to build your project. You can heroku config:set NPM_CONFIG_PRODUCTION=false to make heroku install devDependencies also.
after creating a project with the CLI i did an
npm install --production
and then tried anpm run bs
this is what will be done hosting a project in heroku and it failed because of dependencies, is this happening to someone else?