Skip to content

Instantly share code, notes, and snippets.

@RidaRidss
Last active June 7, 2024 07:33
Show Gist options
  • Save RidaRidss/3e0714ce78ab8aad750cafbd0b559d6c to your computer and use it in GitHub Desktop.
Save RidaRidss/3e0714ce78ab8aad750cafbd0b559d6c to your computer and use it in GitHub Desktop.
Clean Cache In React Native Project On Mac (pods,yarn,npm) ~ cache clean
rm -rf $TMPDIR/react-*; rm -rf $TMPDIR/haste-*; rm -rf $TMPDIR/metro-*; watchman watch-del-all; rm -r node_modules/ ; rm -r android/app/build; npm cache verify ; yarn cache clean ; cd ios ; rm -Rf Pods/* && pod cache clean --all && rm -rf ~/Library/Caches/CocoaPods; rm -rf Pods; rm -rf ~/Library/Developer/Xcode/DerivedData/*; pod deintegrate; cd .. && npm install && cd ios; pod install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment