From a8c1f6e1d20932f2afd9af060af31615c60403ec Mon Sep 17 00:00:00 2001 From: Asaf Korem Date: Wed, 24 Apr 2024 10:21:22 +0300 Subject: [PATCH 1/3] test(ios): enable Fabric on playground app (new arch). --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index dc02c814a0a..14387dc40f4 100644 --- a/package.json +++ b/package.json @@ -33,8 +33,8 @@ "start": "node ./scripts/start", "pretest-js": "npm run build", "test-js": "node ./scripts/test-js", - "pod-install-new-arch": "cd playground/ios && BUNDLE_GEMFILE=../../Gemfile BUNDLE_PATH=~/gems/ bundle install && RCT_NEW_ARCH_ENABLED=1 bundle exec pod install", - "pod-install": "cd playground/ios && pod install", + "pod-install": "cd playground/ios && BUNDLE_GEMFILE=../../Gemfile BUNDLE_PATH=~/gems/ bundle install && RCT_NEW_ARCH_ENABLED=1 bundle exec pod install", + "pod-install-old-arch": "cd playground/ios && pod install", "test-unit-ios": "node ./scripts/test-unit --ios", "test-snapshot-ios": "node ./scripts/test-snapshot --ios", "test-unit-android": "node ./scripts/test-unit --android", @@ -231,4 +231,4 @@ } } } -} \ No newline at end of file +} From e4315e963cdf7416f15db1d34dc736196939ba40 Mon Sep 17 00:00:00 2001 From: Asaf Korem Date: Wed, 24 Apr 2024 11:18:30 +0300 Subject: [PATCH 2/3] test(ios): use `bundle install` without params. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 14387dc40f4..6de917ebbca 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "start": "node ./scripts/start", "pretest-js": "npm run build", "test-js": "node ./scripts/test-js", - "pod-install": "cd playground/ios && BUNDLE_GEMFILE=../../Gemfile BUNDLE_PATH=~/gems/ bundle install && RCT_NEW_ARCH_ENABLED=1 bundle exec pod install", + "pod-install": "cd playground/ios && bundle install && RCT_NEW_ARCH_ENABLED=1 bundle exec pod install", "pod-install-old-arch": "cd playground/ios && pod install", "test-unit-ios": "node ./scripts/test-unit --ios", "test-snapshot-ios": "node ./scripts/test-snapshot --ios", From f3cdff713877cbf369b7c61e359b54fa99e643ae Mon Sep 17 00:00:00 2001 From: Asaf Korem Date: Wed, 24 Apr 2024 12:17:39 +0300 Subject: [PATCH 3/3] Revert "test(ios): use `bundle install` without params." This reverts commit e4315e963cdf7416f15db1d34dc736196939ba40. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6de917ebbca..14387dc40f4 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "start": "node ./scripts/start", "pretest-js": "npm run build", "test-js": "node ./scripts/test-js", - "pod-install": "cd playground/ios && bundle install && RCT_NEW_ARCH_ENABLED=1 bundle exec pod install", + "pod-install": "cd playground/ios && BUNDLE_GEMFILE=../../Gemfile BUNDLE_PATH=~/gems/ bundle install && RCT_NEW_ARCH_ENABLED=1 bundle exec pod install", "pod-install-old-arch": "cd playground/ios && pod install", "test-unit-ios": "node ./scripts/test-unit --ios", "test-snapshot-ios": "node ./scripts/test-snapshot --ios",