react-native 0.74.0-rc.5 → 0.74.0-rc.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/Libraries/AppDelegate/RCTRootViewFactory.h +1 -1
  2. package/Libraries/Core/ReactNativeVersion.js +1 -1
  3. package/Libraries/ReactNative/AppContainer-dev.js +21 -2
  4. package/React/Base/RCTBridge+Inspector.h +30 -0
  5. package/React/Base/RCTBridge+Private.h +0 -20
  6. package/React/Base/RCTBridge.mm +1 -0
  7. package/React/Base/RCTVersion.m +1 -1
  8. package/React/CoreModules/RCTDevSettings.mm +1 -0
  9. package/React/CoreModules/RCTDeviceInfo.mm +4 -4
  10. package/React/CxxBridge/RCTCxxBridge.mm +1 -0
  11. package/React/Modules/RCTUIManager.m +10 -0
  12. package/ReactAndroid/api/ReactAndroid.api +9 -0
  13. package/ReactAndroid/gradle.properties +1 -1
  14. package/ReactAndroid/src/main/java/com/facebook/react/DebugCorePackage.java +1 -1
  15. package/ReactAndroid/src/main/java/com/facebook/react/ReactDelegate.java +10 -1
  16. package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +1 -1
  17. package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactInstance.java +4 -0
  18. package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
  19. package/ReactCommon/jserrorhandler/React-jserrorhandler.podspec +1 -1
  20. package/ReactCommon/react/nativemodule/core/platform/ios/ReactCommon/RCTTurboModule.mm +4 -1
  21. package/ReactCommon/react/runtime/React-RuntimeCore.podspec +1 -1
  22. package/ReactCommon/react/runtime/hermes/HermesInstance.cpp +0 -1
  23. package/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm +1 -0
  24. package/ReactCommon/yoga/Yoga.podspec +4 -1
  25. package/package.json +20 -11
  26. package/scripts/cocoapods/utils.rb +1 -1
  27. package/scripts/xcode/ccache-clang++.sh +14 -0
  28. package/scripts/xcode/ccache-clang.sh +14 -0
  29. package/scripts/xcode/ccache.conf +11 -0
  30. package/sdks/hermes-engine/utils/build-ios-framework.sh +5 -0
  31. package/sdks/hermes-engine/utils/build-mac-framework.sh +5 -0
  32. package/sdks/hermesc/osx-bin/hermes +0 -0
  33. package/sdks/hermesc/osx-bin/hermesc +0 -0
  34. package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
  35. package/template/package.json +5 -5
@@ -107,7 +107,7 @@ typedef RCTBridge *_Nonnull (
107
107
  *
108
108
  * @parameter: moduleName - the name of the app, used by Metro to resolve the module.
109
109
  * @parameter: initialProperties - a set of initial properties.
110
- * @parameter: moduleName - a dictionary with a set of options.
110
+ * @parameter: launchOptions - a dictionary with a set of options.
111
111
  */
112
112
  - (UIView *_Nonnull)viewWithModuleName:(NSString *)moduleName
113
113
  initialProperties:(NSDictionary *__nullable)initialProperties
@@ -17,7 +17,7 @@ const version: $ReadOnly<{
17
17
  major: 0,
18
18
  minor: 74,
19
19
  patch: 0,
20
- prerelease: 'rc.5',
20
+ prerelease: 'rc.7',
21
21
  };
22
22
 
23
23
  module.exports = {version};
@@ -20,7 +20,6 @@ import View from '../Components/View/View';
20
20
  import DebuggingOverlay from '../Debugging/DebuggingOverlay';
21
21
  import useSubscribeToDebuggingOverlayRegistry from '../Debugging/useSubscribeToDebuggingOverlayRegistry';
22
22
  import RCTDeviceEventEmitter from '../EventEmitter/RCTDeviceEventEmitter';
23
- import ReactDevToolsOverlay from '../Inspector/ReactDevToolsOverlay';
24
23
  import LogBoxNotificationContainer from '../LogBox/LogBoxNotificationContainer';
25
24
  import StyleSheet from '../StyleSheet/StyleSheet';
26
25
  import {RootTagContext, createRootTag} from './RootTag';
@@ -64,6 +63,26 @@ const InspectorDeferred = ({
64
63
  );
65
64
  };
66
65
 
66
+ type ReactDevToolsOverlayDeferredProps = {
67
+ inspectedViewRef: InspectedViewRef,
68
+ reactDevToolsAgent: ReactDevToolsAgent,
69
+ };
70
+
71
+ const ReactDevToolsOverlayDeferred = ({
72
+ inspectedViewRef,
73
+ reactDevToolsAgent,
74
+ }: ReactDevToolsOverlayDeferredProps) => {
75
+ const ReactDevToolsOverlay =
76
+ require('../Inspector/ReactDevToolsOverlay').default;
77
+
78
+ return (
79
+ <ReactDevToolsOverlay
80
+ inspectedViewRef={inspectedViewRef}
81
+ reactDevToolsAgent={reactDevToolsAgent}
82
+ />
83
+ );
84
+ };
85
+
67
86
  const AppContainer = ({
68
87
  children,
69
88
  fabric,
@@ -155,7 +174,7 @@ const AppContainer = ({
155
174
  <DebuggingOverlay ref={debuggingOverlayRef} />
156
175
 
157
176
  {reactDevToolsAgent != null && (
158
- <ReactDevToolsOverlay
177
+ <ReactDevToolsOverlayDeferred
159
178
  inspectedViewRef={innerViewRef}
160
179
  reactDevToolsAgent={reactDevToolsAgent}
161
180
  />
@@ -0,0 +1,30 @@
1
+ /*
2
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ #import <React/RCTBridge.h>
9
+
10
+ #ifdef __cplusplus
11
+ #import <jsinspector-modern/ReactCdp.h>
12
+ #endif
13
+
14
+ @interface RCTBridge (Inspector)
15
+
16
+ /**
17
+ * The HostTarget for this bridge, if one has been created. Exposed for RCTCxxBridge only.
18
+ */
19
+ @property (nonatomic, assign, readonly)
20
+ #ifdef __cplusplus
21
+ facebook::react::jsinspector_modern::PageTarget *
22
+ #else
23
+ // The inspector infrastructure cannot be used in C or Swift code.
24
+ void *
25
+ #endif
26
+ inspectorTarget;
27
+
28
+ @property (nonatomic, readonly, getter=isInspectable) BOOL inspectable;
29
+
30
+ @end
@@ -6,9 +6,6 @@
6
6
  */
7
7
 
8
8
  #import <React/RCTBridge.h>
9
- #ifdef __cplusplus
10
- #import <jsinspector-modern/ReactCdp.h>
11
- #endif
12
9
 
13
10
  @class RCTModuleRegistry;
14
11
  @class RCTModuleData;
@@ -73,17 +70,6 @@ RCT_EXTERN void RCTRegisterModule(Class);
73
70
  */
74
71
  @property (nonatomic, strong, readonly) RCTModuleRegistry *moduleRegistry;
75
72
 
76
- /**
77
- * The page target for this bridge, if one has been created. Exposed for RCTCxxBridge only.
78
- */
79
- @property (nonatomic, assign, readonly)
80
- #ifdef __cplusplus
81
- facebook::react::jsinspector_modern::PageTarget *
82
- #else
83
- // The inspector infrastructure cannot be used in C code.
84
- void *
85
- #endif
86
- inspectorTarget;
87
73
  @end
88
74
 
89
75
  @interface RCTBridge (RCTCxxBridge)
@@ -155,12 +141,6 @@ RCT_EXTERN void RCTRegisterModule(Class);
155
141
 
156
142
  @end
157
143
 
158
- @interface RCTBridge (Inspector)
159
-
160
- @property (nonatomic, readonly, getter=isInspectable) BOOL inspectable;
161
-
162
- @end
163
-
164
144
  @interface RCTCxxBridge : RCTBridge
165
145
 
166
146
  // TODO(cjhopman): this seems unsafe unless we require that it is only called on the main js queue.
@@ -6,6 +6,7 @@
6
6
  */
7
7
 
8
8
  #import "RCTBridge.h"
9
+ #import "RCTBridge+Inspector.h"
9
10
  #import "RCTBridge+Private.h"
10
11
 
11
12
  #import <objc/runtime.h>
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(74),
26
26
  RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"rc.5",
27
+ RCTVersionPrerelease: @"rc.7",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -10,6 +10,7 @@
10
10
  #import <objc/runtime.h>
11
11
 
12
12
  #import <FBReactNativeSpec/FBReactNativeSpec.h>
13
+ #import <React/RCTBridge+Inspector.h>
13
14
  #import <React/RCTBridge+Private.h>
14
15
  #import <React/RCTBridgeModule.h>
15
16
  #import <React/RCTConstants.h>
@@ -89,6 +89,9 @@ RCT_EXPORT_MODULE()
89
89
 
90
90
  - (void)invalidate
91
91
  {
92
+ if (_invalidated) {
93
+ return;
94
+ }
92
95
  _invalidated = YES;
93
96
  [self _cleanupObservers];
94
97
  }
@@ -109,10 +112,7 @@ RCT_EXPORT_MODULE()
109
112
 
110
113
  [[NSNotificationCenter defaultCenter] removeObserver:self name:RCTWindowFrameDidChangeNotification object:nil];
111
114
 
112
- [[NSNotificationCenter defaultCenter] addObserver:self
113
- selector:@selector(invalidate)
114
- name:RCTBridgeWillInvalidateModulesNotification
115
- object:nil];
115
+ [[NSNotificationCenter defaultCenter] removeObserver:self name:RCTBridgeWillInvalidateModulesNotification object:nil];
116
116
  }
117
117
 
118
118
  static BOOL RCTIsIPhoneNotched()
@@ -9,6 +9,7 @@
9
9
  #include <future>
10
10
 
11
11
  #import <React/RCTAssert.h>
12
+ #import <React/RCTBridge+Inspector.h>
12
13
  #import <React/RCTBridge+Private.h>
13
14
  #import <React/RCTBridge.h>
14
15
  #import <React/RCTBridgeMethod.h>
@@ -1680,6 +1680,16 @@ static UIView *_jsResponder;
1680
1680
  return self;
1681
1681
  }
1682
1682
 
1683
+ - (NSUInteger)count
1684
+ {
1685
+ return self->_registry.count;
1686
+ }
1687
+
1688
+ - (NSEnumerator *)keyEnumerator
1689
+ {
1690
+ return self->_registry.keyEnumerator;
1691
+ }
1692
+
1683
1693
  - (id)objectForKey:(id)key
1684
1694
  {
1685
1695
  if (![key isKindOfClass:[NSNumber class]]) {
@@ -29,6 +29,15 @@ public class com/facebook/react/CoreModulesPackage$$ReactModuleInfoProvider : co
29
29
  public fun getReactModuleInfos ()Ljava/util/Map;
30
30
  }
31
31
 
32
+ public class com/facebook/react/DebugCorePackage : com/facebook/react/TurboReactPackage, com/facebook/react/ViewManagerOnDemandReactPackage {
33
+ public fun <init> ()V
34
+ public fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager;
35
+ public fun getModule (Ljava/lang/String;Lcom/facebook/react/bridge/ReactApplicationContext;)Lcom/facebook/react/bridge/NativeModule;
36
+ public fun getReactModuleInfoProvider ()Lcom/facebook/react/module/model/ReactModuleInfoProvider;
37
+ public fun getViewManagerNames (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/Collection;
38
+ public fun getViewManagers (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/List;
39
+ }
40
+
32
41
  public class com/facebook/react/DebugCorePackage$$ReactModuleInfoProvider : com/facebook/react/module/model/ReactModuleInfoProvider {
33
42
  public fun <init> ()V
34
43
  public fun getReactModuleInfos ()Ljava/util/Map;
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.74.0-rc.5
1
+ VERSION_NAME=0.74.0-rc.7
2
2
  react.internal.publishingGroup=com.facebook.react
3
3
 
4
4
  android.useAndroidX=true
@@ -36,7 +36,7 @@ import javax.inject.Provider;
36
36
  JSCHeapCapture.class,
37
37
  })
38
38
  /* package */
39
- class DebugCorePackage extends TurboReactPackage implements ViewManagerOnDemandReactPackage {
39
+ public class DebugCorePackage extends TurboReactPackage implements ViewManagerOnDemandReactPackage {
40
40
  private @Nullable Map<String, ModuleSpec> mViewManagers;
41
41
 
42
42
  public DebugCorePackage() {}
@@ -16,6 +16,7 @@ import androidx.annotation.NonNull;
16
16
  import androidx.annotation.Nullable;
17
17
  import com.facebook.infer.annotation.Assertions;
18
18
  import com.facebook.react.config.ReactFeatureFlags;
19
+ import com.facebook.react.devsupport.DisabledDevSupportManager;
19
20
  import com.facebook.react.devsupport.DoubleTapReloadRecognizer;
20
21
  import com.facebook.react.devsupport.interfaces.DevSupportManager;
21
22
  import com.facebook.react.interfaces.fabric.ReactSurface;
@@ -232,7 +233,15 @@ public class ReactDelegate {
232
233
  public void reload() {
233
234
  DevSupportManager devSupportManager = getDevSupportManager();
234
235
  if (devSupportManager != null) {
235
- devSupportManager.handleReloadJS();
236
+ // With Bridgeless enabled, reload in RELEASE mode
237
+ if (devSupportManager instanceof DisabledDevSupportManager
238
+ && ReactFeatureFlags.enableBridgelessArchitecture
239
+ && mReactHost != null) {
240
+ // Do not reload the bundle from JS as there is no bundler running in release mode.
241
+ mReactHost.reload("ReactDelegate.reload()");
242
+ } else {
243
+ devSupportManager.handleReloadJS();
244
+ }
236
245
  }
237
246
  }
238
247
 
@@ -18,5 +18,5 @@ public class ReactNativeVersion {
18
18
  "major", 0,
19
19
  "minor", 74,
20
20
  "patch", 0,
21
- "prerelease", "rc.5");
21
+ "prerelease", "rc.7");
22
22
  }
@@ -15,6 +15,7 @@ import com.facebook.infer.annotation.ThreadConfined;
15
15
  import com.facebook.infer.annotation.ThreadSafe;
16
16
  import com.facebook.jni.HybridData;
17
17
  import com.facebook.proguard.annotations.DoNotStrip;
18
+ import com.facebook.react.DebugCorePackage;
18
19
  import com.facebook.react.ReactPackage;
19
20
  import com.facebook.react.ViewManagerOnDemandReactPackage;
20
21
  import com.facebook.react.bridge.Arguments;
@@ -195,6 +196,9 @@ final class ReactInstance {
195
196
  new CoreReactPackage(
196
197
  bridgelessReactContext.getDevSupportManager(),
197
198
  bridgelessReactContext.getDefaultHardwareBackBtnHandler()));
199
+ if (useDevSupport) {
200
+ mReactPackages.add(new DebugCorePackage());
201
+ }
198
202
  mReactPackages.addAll(mDelegate.getReactPackages());
199
203
 
200
204
  TurboModuleManagerDelegate turboModuleManagerDelegate =
@@ -18,7 +18,7 @@ constexpr struct {
18
18
  int32_t Major = 0;
19
19
  int32_t Minor = 74;
20
20
  int32_t Patch = 0;
21
- std::string_view Prerelease = "rc.5";
21
+ std::string_view Prerelease = "rc.7";
22
22
  } ReactNativeVersion;
23
23
 
24
24
  } // namespace facebook::react
@@ -41,7 +41,7 @@ Pod::Spec.new do |s|
41
41
  s.compiler_flags = folly_compiler_flags + ' ' + boost_compiler_flags
42
42
 
43
43
  if ENV['USE_FRAMEWORKS']
44
- s.header_mappings_dir = './'
44
+ s.header_mappings_dir = '../'
45
45
  s.module_name = 'React_jserrorhandler'
46
46
  end
47
47
 
@@ -219,7 +219,10 @@ static jsi::Value convertJSErrorDetailsToJSRuntimeError(jsi::Runtime &runtime, N
219
219
  NSString *message = jsErrorDetails[@"message"];
220
220
 
221
221
  auto jsError = createJSRuntimeError(runtime, [message UTF8String]);
222
- jsError.asObject(runtime).setProperty(runtime, "cause", convertObjCObjectToJSIValue(runtime, jsErrorDetails));
222
+ for (NSString *key in jsErrorDetails) {
223
+ id value = jsErrorDetails[key];
224
+ jsError.asObject(runtime).setProperty(runtime, [key UTF8String], convertObjCObjectToJSIValue(runtime, value));
225
+ }
223
226
 
224
227
  return jsError;
225
228
  }
@@ -42,7 +42,7 @@ Pod::Spec.new do |s|
42
42
  s.compiler_flags = folly_compiler_flags + ' ' + boost_compiler_flags
43
43
 
44
44
  if ENV['USE_FRAMEWORKS']
45
- s.header_mappings_dir = './'
45
+ s.header_mappings_dir = '../../'
46
46
  s.module_name = 'React_RuntimeCore'
47
47
  end
48
48
 
@@ -168,7 +168,6 @@ std::unique_ptr<JSRuntime> HermesInstance::createJSRuntime(
168
168
  .withAllocInYoung(false)
169
169
  .withRevertToYGAtTTI(true)
170
170
  .build())
171
- .withES6Proxy(false)
172
171
  .withEnableSampleProfiling(true)
173
172
  .withMicrotaskQueue(ReactNativeFeatureFlags::enableMicrotasks())
174
173
  .withVMExperimentFlags(vmExperimentFlags);
@@ -11,6 +11,7 @@
11
11
 
12
12
  #import <React/NSDataBigString.h>
13
13
  #import <React/RCTAssert.h>
14
+ #import <React/RCTBridge+Inspector.h>
14
15
  #import <React/RCTBridge+Private.h>
15
16
  #import <React/RCTBridge.h>
16
17
  #import <React/RCTBridgeModule.h>
@@ -32,7 +32,10 @@ Pod::Spec.new do |spec|
32
32
  spec.requires_arc = false
33
33
  spec.pod_target_xcconfig = {
34
34
  'DEFINES_MODULE' => 'YES'
35
- }
35
+ }.merge!(ENV['USE_FRAMEWORKS'] != nil ? {
36
+ 'HEADER_SEARCH_PATHS' => '"$(PODS_TARGET_SRCROOT)"'
37
+ } : {})
38
+
36
39
  spec.compiler_flags = [
37
40
  '-fno-omit-frame-pointer',
38
41
  '-fexceptions',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.74.0-rc.5",
3
+ "version": "0.74.0-rc.7",
4
4
  "description": "A framework for building native apps using React",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -64,6 +64,9 @@
64
64
  "scripts/hermes/hermes-utils.js",
65
65
  "scripts/hermes/prepare-hermes-for-build.js",
66
66
  "scripts/ios-configure-glog.sh",
67
+ "scripts/xcode/ccache-clang++.sh",
68
+ "scripts/xcode/ccache-clang.sh",
69
+ "scripts/xcode/ccache.conf",
67
70
  "scripts/xcode/with-environment.sh",
68
71
  "scripts/native_modules.rb",
69
72
  "scripts/node-binary.sh",
@@ -94,20 +97,26 @@
94
97
  "featureflags-update": "node ./scripts/featureflags/index.js"
95
98
  },
96
99
  "peerDependencies": {
100
+ "@types/react": "^18.2.6",
97
101
  "react": "18.2.0"
98
102
  },
103
+ "peerDependenciesMeta": {
104
+ "@types/react": {
105
+ "optional": true
106
+ }
107
+ },
99
108
  "dependencies": {
100
109
  "@jest/create-cache-key-function": "^29.6.3",
101
- "@react-native-community/cli": "13.6.2",
102
- "@react-native-community/cli-platform-android": "13.6.2",
103
- "@react-native-community/cli-platform-ios": "13.6.2",
104
- "@react-native/assets-registry": "0.74.76",
105
- "@react-native/codegen": "0.74.76",
106
- "@react-native/community-cli-plugin": "0.74.76",
107
- "@react-native/gradle-plugin": "0.74.76",
108
- "@react-native/js-polyfills": "0.74.76",
109
- "@react-native/normalize-colors": "0.74.76",
110
- "@react-native/virtualized-lists": "0.74.76",
110
+ "@react-native-community/cli": "13.6.4",
111
+ "@react-native-community/cli-platform-android": "13.6.4",
112
+ "@react-native-community/cli-platform-ios": "13.6.4",
113
+ "@react-native/assets-registry": "0.74.78",
114
+ "@react-native/codegen": "0.74.78",
115
+ "@react-native/community-cli-plugin": "0.74.78",
116
+ "@react-native/gradle-plugin": "0.74.78",
117
+ "@react-native/js-polyfills": "0.74.78",
118
+ "@react-native/normalize-colors": "0.74.78",
119
+ "@react-native/virtualized-lists": "0.74.78",
111
120
  "abort-controller": "^3.0.0",
112
121
  "anser": "^1.4.9",
113
122
  "ansi-regex": "^5.0.0",
@@ -189,7 +189,7 @@ class ReactNativePodsUtils
189
189
  installer.target_installation_results.pod_target_installation_results.each do |pod_name, target_installation_result|
190
190
  if pod_name.to_s == target_pod_name
191
191
  target_installation_result.native_target.build_configurations.each do |config|
192
- if configuration == nil || (configuration != nil && configuration == config.name)
192
+ if configuration == nil || (configuration != nil && config.name.include?(configuration))
193
193
  config.build_settings[settings_name] ||= '$(inherited) '
194
194
  config.build_settings[settings_name] << settings_value
195
195
  end
@@ -0,0 +1,14 @@
1
+ #!/bin/sh
2
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ #
4
+ # This source code is licensed under the MIT license found in the
5
+ # LICENSE file in the root directory of this source tree.
6
+
7
+ # Get the absolute path of this script
8
+ SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
9
+
10
+ REACT_NATIVE_CCACHE_CONFIGPATH=$SCRIPT_DIR/ccache.conf
11
+ # Provide our config file if none is already provided
12
+ export CCACHE_CONFIGPATH="${CCACHE_CONFIGPATH:-$REACT_NATIVE_CCACHE_CONFIGPATH}"
13
+
14
+ exec ccache clang++ "$@"
@@ -0,0 +1,14 @@
1
+ #!/bin/sh
2
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ #
4
+ # This source code is licensed under the MIT license found in the
5
+ # LICENSE file in the root directory of this source tree.
6
+
7
+ # Get the absolute path of this script
8
+ SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
9
+
10
+ REACT_NATIVE_CCACHE_CONFIGPATH=$SCRIPT_DIR/ccache.conf
11
+ # Provide our config file if none is already provided
12
+ export CCACHE_CONFIGPATH="${CCACHE_CONFIGPATH:-$REACT_NATIVE_CCACHE_CONFIGPATH}"
13
+
14
+ exec ccache clang "$@"
@@ -0,0 +1,11 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+ #
3
+ # This source code is licensed under the MIT license found in the
4
+ # LICENSE file in the root directory of this source tree.
5
+
6
+ # See https://ccache.dev/manual/4.3.html#_configuration_options for details and available options
7
+
8
+ sloppiness = clang_index_store,file_stat_matches,include_file_ctime,include_file_mtime,ivfsoverlay,pch_defines,modules,system_headers,time_macros
9
+ file_clone = true
10
+ depend_mode = true
11
+ inode_cache = true
@@ -4,6 +4,11 @@
4
4
  # This source code is licensed under the MIT license found in the
5
5
  # LICENSE file in the root directory of this source tree.
6
6
 
7
+ if [ "$CI" ]; then
8
+ set -x
9
+ fi
10
+ set -e
11
+
7
12
  # Given a specific target, retrieve the right architecture for it
8
13
  # $1 the target you want to build. Allowed values: iphoneos, iphonesimulator, catalyst
9
14
  function get_architecture {
@@ -4,6 +4,11 @@
4
4
  # This source code is licensed under the MIT license found in the
5
5
  # LICENSE file in the root directory of this source tree.
6
6
 
7
+ if [ "$CI" ]; then
8
+ set -x
9
+ fi
10
+ set -e
11
+
7
12
  # shellcheck source=xplat/js/react-native-github/sdks/hermes-engine/utils/build-apple-framework.sh
8
13
  CURR_SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)"
9
14
  . "${CURR_SCRIPT_DIR}/build-apple-framework.sh"
Binary file
Binary file
Binary file
@@ -11,16 +11,16 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "react": "18.2.0",
14
- "react-native": "0.74.0-rc.5"
14
+ "react-native": "0.74.0-rc.7"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/core": "^7.20.0",
18
18
  "@babel/preset-env": "^7.20.0",
19
19
  "@babel/runtime": "^7.20.0",
20
- "@react-native/babel-preset": "0.74.76",
21
- "@react-native/eslint-config": "0.74.76",
22
- "@react-native/metro-config": "0.74.76",
23
- "@react-native/typescript-config": "0.74.76",
20
+ "@react-native/babel-preset": "0.74.78",
21
+ "@react-native/eslint-config": "0.74.78",
22
+ "@react-native/metro-config": "0.74.78",
23
+ "@react-native/typescript-config": "0.74.78",
24
24
  "@types/react": "^18.2.6",
25
25
  "@types/react-test-renderer": "^18.0.0",
26
26
  "babel-jest": "^29.6.3",