Skip to content

Commit 317637e

Browse files
committed
Fix bundling bug
1 parent dc34b67 commit 317637e

File tree

2 files changed

+5
-17
lines changed

2 files changed

+5
-17
lines changed

babel.config.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,7 @@
1-
// {
2-
// "presets": ["env", "module:metro-react-native-babel-preset"],
3-
// "plugins": [
4-
// ["@babel/plugin-proposal-decorators", { "legacy": true }],
5-
// "@babel/plugin-syntax-export-namespace-from",
6-
// "transform-export-extensions"
7-
// ]
8-
// }
91
'use strict'
102

113
module.exports = {
12-
presets: ["env", "@babel/preset-env", "module:metro-react-native-babel-preset"],
4+
presets: ["module:metro-react-native-babel-preset"],
135
plugins: [
146
"@babel/plugin-transform-modules-commonjs",
157
["@babel/plugin-proposal-decorators", { "legacy": true }],

ios/ReactNativeStarterKit.xcodeproj/project.pbxproj

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -732,12 +732,8 @@
732732
TargetAttributes = {
733733
00E356ED1AD99517003FC87E = {
734734
CreatedOnToolsVersion = 6.2;
735-
DevelopmentTeam = CUK6RVM3Q4;
736735
TestTargetID = 13B07F861A680F5B00A75B9A;
737736
};
738-
13B07F861A680F5B00A75B9A = {
739-
DevelopmentTeam = CUK6RVM3Q4;
740-
};
741737
};
742738
};
743739
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ReactNativeStarterKit" */;
@@ -1222,7 +1218,7 @@
12221218
isa = XCBuildConfiguration;
12231219
buildSettings = {
12241220
BUNDLE_LOADER = "$(TEST_HOST)";
1225-
DEVELOPMENT_TEAM = CUK6RVM3Q4;
1221+
DEVELOPMENT_TEAM = "";
12261222
GCC_PREPROCESSOR_DEFINITIONS = (
12271223
"DEBUG=1",
12281224
"$(inherited)",
@@ -1250,7 +1246,7 @@
12501246
buildSettings = {
12511247
BUNDLE_LOADER = "$(TEST_HOST)";
12521248
COPY_PHASE_STRIP = NO;
1253-
DEVELOPMENT_TEAM = CUK6RVM3Q4;
1249+
DEVELOPMENT_TEAM = "";
12541250
HEADER_SEARCH_PATHS = (
12551251
"$(inherited)",
12561252
"$(SRCROOT)..",
@@ -1276,7 +1272,7 @@
12761272
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
12771273
CURRENT_PROJECT_VERSION = 1;
12781274
DEAD_CODE_STRIPPING = NO;
1279-
DEVELOPMENT_TEAM = CUK6RVM3Q4;
1275+
DEVELOPMENT_TEAM = "";
12801276
INFOPLIST_FILE = ReactNativeStarterKit/Info.plist;
12811277
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
12821278
OTHER_LDFLAGS = (
@@ -1296,7 +1292,7 @@
12961292
buildSettings = {
12971293
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
12981294
CURRENT_PROJECT_VERSION = 1;
1299-
DEVELOPMENT_TEAM = CUK6RVM3Q4;
1295+
DEVELOPMENT_TEAM = "";
13001296
INFOPLIST_FILE = ReactNativeStarterKit/Info.plist;
13011297
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
13021298
OTHER_LDFLAGS = (

0 commit comments

Comments
 (0)