Please help the following error.
Can any one help me, how to fix the attached error.
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 ??
1 Like
You should run bower install in your working directory
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.
2 Likes
There’s even a nombom npm package that allows you to simply run nombom.
1 Like
Thank you Trabus! It works like a charm!
-Chitra
