Skip to content

Instantly share code, notes, and snippets.

@gustavohenke
Last active January 10, 2018 00:24
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 gustavohenke/837c0e8811e9b39f00c1ad76f13ec4ed to your computer and use it in GitHub Desktop.
Save gustavohenke/837c0e8811e9b39f00c1ad76f13ec4ed to your computer and use it in GitHub Desktop.
"Windows restart"
# Put me in your .bash_profile and enjoy rainy days reinstalling deps
windows_restart() {
rm -rf node_modules
if [ -f "yarn.lock" ]; then
yarn
else
npm install
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment