Please help the following error.
Run bower to install missing dependcies
broerse
#3
I would try to delete ember-cli-sri folder from the node_modules folder and run npm install again. Do you have this also when you run ember new dummy
??
trabus
#5
This looks like a failed install/upgrade to me. You’ll want to clear your cache:
npm cache clear && bower cache clean
Then remove your old directories:
rm -rf node_modules bower_components
then reinstall:
npm install && bower install
.
The above process is referred to as a “nombom”, as coined by Robert Jackson.