So basically I want to understand why, when I run npm install sass-loader node-sass --save-dev , I get this error
βββ UNMET PEER DEPENDENCY generator-karma @> = 0.9.0
However, itβs clear that Karma has been installed since I run npm install generator-karma , I see that:
βββ¬ generator-karma@2.0.0 <--- Which mean karma is there... βββ¬ yeoman-generator@0.22.6 βββ async@1.5.2 ...
I read the answer, explaining that I should use npm install -g grunt-cli bower yo generator-karma generator-angular , but that doesn't help much.
Should I remove and reinstall pure node_modules ?
source share