stream-chat-react-native 8.13.4 → 8.13.5

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stream-chat-react-native",
3
3
  "description": "The official React Native SDK for Stream Chat, a service for building chat applications",
4
- "version": "8.13.4",
4
+ "version": "8.13.5",
5
5
  "homepage": "https://www.npmjs.com/package/stream-chat-react-native",
6
6
  "author": {
7
7
  "company": "Stream.io Inc",
@@ -26,7 +26,7 @@
26
26
  "dependencies": {
27
27
  "es6-symbol": "^3.1.3",
28
28
  "mime": "^4.0.7",
29
- "stream-chat-react-native-core": "8.13.4"
29
+ "stream-chat-react-native-core": "8.13.5"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "@react-native-camera-roll/camera-roll": ">=7.8.0",
@@ -28,11 +28,15 @@ Pod::Spec.new do |s|
28
28
  "CLANG_CXX_LANGUAGE_STANDARD" => "c++17"
29
29
  }
30
30
  s.dependency "React-Codegen"
31
- s.dependency "RCT-Folly"
31
+ # Prebuilt RN modes already handle Folly (or don't expose RCT-Folly podspec).
32
+ use_prebuilt_core = ENV['RCT_USE_PREBUILT_RNCORE'] == '1'
33
+ use_prebuilt_deps = ENV['RCT_USE_RN_DEP'] == '1'
34
+ unless use_prebuilt_core || use_prebuilt_deps
35
+ s.dependency "RCT-Folly"
36
+ end
32
37
  s.dependency "RCTRequired"
33
38
  s.dependency "RCTTypeSafety"
34
39
  s.dependency "ReactCommon/turbomodule/core"
35
40
  install_modules_dependencies(s)
36
41
  end
37
42
  end
38
-