test package update

This commit is contained in:
Justin Hernandez
2025-07-28 18:20:50 -07:00
parent 5427bd12a1
commit 19dcba0e42
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ gem "fastlane", "~> 2.228.0"
group :development do
gem "dotenv"
# Exclude nokogiri for GitHub Actions and Act
gem "nokogiri", "~> 1.18.9", platform: :ruby unless ENV["GITHUB_ACTIONS"] || ENV["ACT"]
gem "nokogiri", "~> 1.18.9", platform: :ruby
end
plugins_path = File.join(File.dirname(__FILE__), "fastlane", "Pluginfile")

View File

@@ -30,7 +30,7 @@
"ia": "yarn install-app",
"install-app": "yarn install-app:setup && cd ios && bundle exec pod install && cd .. && yarn clean:xcode-env-local",
"install-app:mobile-deploy": "yarn install-app:setup && yarn clean:xcode-env-local",
"install-app:setup": "yarn install && yarn build:deps && cd ios && bundle install && cd ..",
"install-app:setup": "yarn install && yarn build:deps && cd ios && bundle exec pod install && cd ..",
"ios": "react-native run-ios",
"ios:fastlane-debug": "yarn reinstall && bundle exec fastlane --verbose ios internal_test",
"lint": "eslint .",
@@ -43,7 +43,7 @@
"mobile-local-deploy:ios": "FORCE_UPLOAD_LOCAL_DEV=true node scripts/mobile-deploy-confirm.cjs ios",
"nice": "yarn lint:fix && yarn fmt:fix",
"reinstall": "yarn clean && yarn install && yarn install-app",
"setup": "yarn clean:build && yarn install && yarn build:deps && cd ios && bundle install && bundle exec pod install --repo-update && cd .. && yarn clean:xcode-env-local",
"setup": "yarn clean:build && yarn install && yarn build:deps && cd ios && bundle exec pod install --repo-update && cd .. && yarn clean:xcode-env-local",
"start": "watchman watch-del-all && react-native start",
"sync-versions": "bundle exec fastlane ios sync_version && bundle exec fastlane android sync_version",
"tag:release": "node scripts/tag.js release",