expo-modules-jsi 56.0.5 → 56.0.6
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/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 56.0.6 — 2026-05-19
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- [iOS] Fixed `no such module 'jsi'` build error when the package path contains `=` (pnpm virtual store with patched dependencies). ([#45956](https://github.com/expo/expo/pull/45956) by [@tsapeta](https://github.com/tsapeta))
|
|
18
|
+
|
|
13
19
|
## 56.0.5 — 2026-05-15
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
|
@@ -278,8 +278,14 @@ if [[ -f "${PODS_ROOT}/Local Podspecs/React-Core.podspec.json" ]]; then
|
|
|
278
278
|
SOURCE_FILES+=("${PODS_ROOT}/Local Podspecs/React-Core.podspec.json")
|
|
279
279
|
fi
|
|
280
280
|
|
|
281
|
-
# Generate the module map for the `jsi` Clang module.
|
|
282
|
-
env
|
|
281
|
+
# Generate the module map for the `jsi` Clang module. Set the env vars inline
|
|
282
|
+
# instead of via `env`: pnpm's virtual-store paths contain `=` characters
|
|
283
|
+
# (e.g. `patch_hash=…`), and BSD `env` parses positional args containing `=`
|
|
284
|
+
# as additional NAME=VALUE assignments — so `env FOO=bar /pnpm/path=with/equals`
|
|
285
|
+
# never finds a command, silently dumps the environment, and exits 0. The
|
|
286
|
+
# parent `set -eo pipefail` doesn't catch that, the modulemap never gets
|
|
287
|
+
# written, and xcodebuild later fails with `no such module 'jsi'`.
|
|
288
|
+
PODS_ROOT="$PODS_ROOT" RN_ROOT="$RN_ROOT" "${PACKAGE_DIR}/scripts/generate-modulemap.sh"
|
|
283
289
|
GENERATED_MODULE_MAP="${PACKAGE_DIR}/.generated/module.modulemap"
|
|
284
290
|
SOURCE_FILES+=("$GENERATED_MODULE_MAP")
|
|
285
291
|
|
package/apple/scripts/test.sh
CHANGED
|
@@ -64,7 +64,7 @@ link_xcframework "ReactNativeDependencies" \
|
|
|
64
64
|
|
|
65
65
|
# --- Generate the jsi module map ---
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
PODS_ROOT="$PODS_ROOT" "${PACKAGE_DIR}/scripts/generate-modulemap.sh"
|
|
68
68
|
|
|
69
69
|
# --- Pick a simulator destination ---
|
|
70
70
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-jsi",
|
|
3
|
-
"version": "56.0.
|
|
3
|
+
"version": "56.0.6",
|
|
4
4
|
"description": "The JavaScript Interface for Expo Modules",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"sideEffects": [],
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"./apple/scripts/test.sh"
|
|
42
42
|
]
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "290368bc41026449a05a4ebf991b85c3a2fb0e3a",
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "apple/scripts/build-xcframework.sh",
|
|
47
47
|
"test": "apple/scripts/test.sh"
|