Skip to content

Instantly share code, notes, and snippets.

@designfrontier
Last active November 26, 2015 00:06
Show Gist options
  • Save designfrontier/bb3e2beebffdc99fcc24 to your computer and use it in GitHub Desktop.
Save designfrontier/bb3e2beebffdc99fcc24 to your computer and use it in GitHub Desktop.
post-commit hook for clearing node_modules
#!/bin/sh
rm -rf node_modules/
npm install
@designfrontier
Copy link
Author

Be sure and chmod it and then stick it in the .git/hooks folder then you are good to go

@designfrontier
Copy link
Author

chmod +x post-checkout

Copy link

ghost commented Nov 26, 2015

What do you think about

npm prune
npm install

Or do you think nuking from orbit is best?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment