@mobileai/react-native 0.9.21 → 0.9.23

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.
@@ -15,9 +15,13 @@ Pod::Spec.new do |s|
15
15
 
16
16
  s.source_files = "ios/MobileAIFloatingOverlayComponentView.{h,m,mm,cpp}"
17
17
 
18
+ # Disable folly coroutines — RCT-Folly doesn't ship coroutine headers.
19
+ # Uses compiler_flags (not pod_target_xcconfig) because
20
+ # install_modules_dependencies overwrites OTHER_CPLUSPLUSFLAGS.
21
+ s.compiler_flags = '-DFOLLY_HAS_COROUTINES=0'
22
+
18
23
  s.pod_target_xcconfig = {
19
- "DEFINES_MODULE" => "NO",
20
- "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAS_COROUTINES=0"
24
+ "DEFINES_MODULE" => "NO"
21
25
  }
22
26
 
23
27
  install_modules_dependencies(s)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mobileai/react-native",
3
- "version": "0.9.21",
3
+ "version": "0.9.23",
4
4
  "description": "Build autonomous AI agents for React Native and Expo apps. Provides AI-native UI traversal, tool calling, and structured reasoning.",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
@@ -93,10 +93,12 @@
93
93
  "publishConfig": {
94
94
  "registry": "https://registry.npmjs.org/"
95
95
  },
96
- "devDependencies": {
96
+ "dependencies": {
97
97
  "@babel/parser": "^7.29.2",
98
98
  "@babel/traverse": "^7.29.0",
99
- "@babel/types": "^7.29.0",
99
+ "@babel/types": "^7.29.0"
100
+ },
101
+ "devDependencies": {
100
102
  "@eslint/compat": "^1.3.2",
101
103
  "@eslint/eslintrc": "^3.3.1",
102
104
  "@eslint/js": "^9.35.0",