Last active
September 21, 2024 07:10
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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