Skip to content

Instantly share code, notes, and snippets.

@agirorn
Created January 27, 2016 14:15
Show Gist options
  • Save agirorn/360119455b75f8f04277 to your computer and use it in GitHub Desktop.
Save agirorn/360119455b75f8f04277 to your computer and use it in GitHub Desktop.
Fix your shrinkwrap file
npm cache clean; \
rm -Rf node_modules; \
rm npm-shrinkwrap.json; \
npm install; \
rm -Rf node_modules; \
npm install; \
npm shrinkwrap;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment