Created
March 14, 2025 10:18
-
-
Save okaybeydanol/d964b5c7168f922077fb2bd108a4f419 to your computer and use it in GitHub Desktop.
scripts
This file contains hidden or 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
"purge:js": "rm -rf node_modules package-lock.json yarn.lock && npm cache clean --force && yarn cache clean && rm -rf $TMPDIR/metro-* $TMPDIR/haste-* ~/Library/Caches/Yarn", | |
"purge:android": "(cd android && ./gradlew --stop) && rm -rf ~/.gradle/caches/ ~/.gradle/daemon ~/.gradle/native ~/.gradle/wrapper android/app/build", | |
"purge:ios": "rm -rf ios/Pods/* ios/Podfile.lock ios/build ~/Library/Caches/CocoaPods ~/Library/Developer/Xcode/DerivedData ~/Library/Developer/CoreSimulator/Caches && xcrun simctl erase all && pod cache clean --all", | |
"purge:gem": "rm -rf Gemfile.lock vendor/* ~/.gem && gem cleanup", | |
"purge:install": "yarn install && cd ios && bundle install && bundle exec pod install", | |
"purge": "npm run purge:js && npm run purge:android && npm run purge:ios && npm run purge:gem && npm run purge:install" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment