Skip to content

Instantly share code, notes, and snippets.

@congnd
Forked from jarretmoses/React Native Clear Cache
Last active February 12, 2018 06:56
Show Gist options
  • Save congnd/11edc9c6b54fe0da235c9f65f48d192b to your computer and use it in GitHub Desktop.
Save congnd/11edc9c6b54fe0da235c9f65f48d192b to your computer and use it in GitHub Desktop.
# NPM
watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean --force && npm install && npm start -- --reset-cache
# YARN
watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean --force && yarn install && npm start -- --reset-cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment