Skip to content

Commit d52cd74

Browse files
committed
fix: try disabling exports feature
1 parent f0e806f commit d52cd74

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/sample-distribution.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
build_and_deploy_ios_testflight_qa:
16-
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop' }}
16+
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/fix/sampleapp-crash-2' }}
1717
runs-on: [macos-15]
1818
steps:
1919
- name: Connect Bot
@@ -38,7 +38,7 @@ jobs:
3838
bundle exec pod install
3939
- name: Build and release Testflight QA
4040
working-directory: examples/SampleApp
41-
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/develop' }};
41+
run: bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/fix/sampleapp-crash-2' }};
4242
env:
4343
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
4444
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}

examples/SampleApp/metro.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ config.resolver.extraNodeModules = extraNodeModules;
6363

6464
config.resolver.nodeModulesPaths = [PATH.resolve(__dirname, 'node_modules')];
6565

66+
config.resolver.unstable_enablePackageExports = false;
67+
6668
// add the package dir for metro to access the package folder
6769
config.watchFolders = [packageDirPath];
6870

0 commit comments

Comments
 (0)