mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-05-06 14:46:20 -04:00
* Added clean script; fixed UI Library * OfflineNotice component; added to Notifications * OfflineNotice on ObsDetails media * OfflineNotice for DQA
24 lines
440 B
Bash
Executable File
24 lines
440 B
Bash
Executable File
echo "iOS simulator cache"
|
|
rm -rf ~/Library/Developer/CoreSimulator/Caches
|
|
|
|
echo "React-native cache"
|
|
rm -rf $TMPDIR/react-*
|
|
|
|
echo "Metro bundler cache"
|
|
rm -rf $TMPDIR/metro-*
|
|
|
|
echo "Watchman cache"
|
|
watchman watch-del-all
|
|
|
|
echo "iOS build folder"
|
|
rm -rf ios/build
|
|
|
|
echo "system iOS pods cache"
|
|
(cd ios && pod cache clean --all)
|
|
|
|
echo "Android build folder"
|
|
rm -rf android/build
|
|
|
|
echo "Android clean project"
|
|
(cd android && ./gradlew clean)
|