add script to delete .xcode.env.local (#36)

This commit is contained in:
Justin Hernandez
2025-02-07 02:36:36 -06:00
committed by GitHub
parent 90d4a0dc49
commit bf18596bf1

View File

@@ -4,11 +4,12 @@
"private": true,
"scripts": {
"android": "react-native run-android",
"clean": "watchman watch-del-all && rm -rf node_modules ios/Pods ios/build android/app/build android/build .yarn/cache",
"clean": "watchman watch-del-all && rm -rf node_modules ios/Pods ios/build android/app/build android/build .yarn/cache ios/.xcode.env.local",
"clean:xcode-env-local": "rm -f ios/.xcode.env.local",
"fmt": "prettier --check .",
"fmt:fix": "prettier --write .",
"ia": "yarn install-app",
"install-app": "cd ../common && yarn && cd ../app && yarn && cd ios && pod install && cd ..",
"install-app": "cd ../common && yarn && cd ../app && yarn && cd ios && pod install && cd .. && yarn clean:xcode-env-local",
"ios": "react-native run-ios",
"lint": "eslint .",
"lint:fix": "eslint --fix .",