You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed Hubot with the yo generator and it worked fine locally. However it crashed on Heroku, throwing node_modules/.bin/hubot not found
yo had installed every modules in the local folder but left package.json empty. Because it also generated a gitignore containing node_modules, no dependency was getting installed on Heroku.
I solved my problem by nuking the node_modules folder with rm -r node_modules and then reinstalling every module with npm install --save
Is this normal?
The text was updated successfully, but these errors were encountered:
I installed Hubot with the yo generator and it worked fine locally. However it crashed on Heroku, throwing
node_modules/.bin/hubot not found
yo had installed every modules in the local folder but left package.json empty. Because it also generated a gitignore containing node_modules, no dependency was getting installed on Heroku.
I solved my problem by nuking the node_modules folder with
rm -r node_modules
and then reinstalling every module withnpm install --save
Is this normal?
The text was updated successfully, but these errors were encountered: