Skip to content

Instantly share code, notes, and snippets.

@ncole458
Created October 18, 2018 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ncole458/8fd6be8eee937e0aa55ea82b27023b19 to your computer and use it in GitHub Desktop.
Save ncole458/8fd6be8eee937e0aa55ea82b27023b19 to your computer and use it in GitHub Desktop.
Ember.js fix node/bower cache issues
# 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