Skip to content

Instantly share code, notes, and snippets.

@agirorn
agirorn / fix-shrinkwrap.sh
Created January 27, 2016 14:15
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;