Skip to content

Instantly share code, notes, and snippets.

View minhcasi's full-sized avatar
🎯
Focusing

Minh Pham minhcasi

🎯
Focusing
  • https://inspireui.com
  • US
View GitHub Profile
@minhcasi
minhcasi / clean-cache.md
Last active April 7, 2020 07:33
React Native CleanCache

Clean Cache on Window

watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache

Clean Cache on macOs

watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && yarn cache clean && yarn install && yarn start -- --reset-cache
watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && yarn cache clean && yarn install && yarn start -- --reset-cache