Created
October 18, 2018 10:42
-
-
Save ncole458/8fd6be8eee937e0aa55ea82b27023b19 to your computer and use it in GitHub Desktop.
Ember.js fix node/bower cache issues
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sometimes Ember builds break due to npm &/or bower cache, node changes etc. | |
# running below usually fixing any cache issues | |
rm -rf node_modules/ bower_components/ tmp/ dist/ | |
npm cache clear | |
bower cache clear | |
npm install && bower install | |
ember s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment