expo-widgets 57.0.13 → 57.0.14
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 +6 -0
- package/android/build.gradle +2 -2
- package/metro.config.js +3 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 57.0.14 — 2026-08-28
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Resolve deep `react-native/*` imports as empty modules when bundling widget layouts, fixing every widget failing with "Could not create context for layout evaluation" after `@expo/ui` 57.0.14 introduced such an import. ([#49491](https://github.com/expo/expo/pull/49491) by [@usmsam](https://github.com/usmsam))
|
|
18
|
+
|
|
13
19
|
## 57.0.13 — 2026-08-26
|
|
14
20
|
|
|
15
21
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -13,7 +13,7 @@ apply plugin: 'expo-module-gradle-plugin'
|
|
|
13
13
|
apply plugin: 'org.jetbrains.kotlin.plugin.compose'
|
|
14
14
|
|
|
15
15
|
group = 'expo.modules.widgets'
|
|
16
|
-
version = '57.0.
|
|
16
|
+
version = '57.0.14'
|
|
17
17
|
|
|
18
18
|
expoModule {
|
|
19
19
|
canBePublished false
|
|
@@ -23,7 +23,7 @@ android {
|
|
|
23
23
|
namespace "expo.modules.widgets"
|
|
24
24
|
defaultConfig {
|
|
25
25
|
versionCode 1
|
|
26
|
-
versionName '57.0.
|
|
26
|
+
versionName '57.0.14'
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
buildFeatures {
|
package/metro.config.js
CHANGED
|
@@ -40,6 +40,9 @@ const buildConfig = {
|
|
|
40
40
|
if (fileSpecifierRe.test(moduleName)) {
|
|
41
41
|
return context.resolveRequest(context, moduleName, platform);
|
|
42
42
|
}
|
|
43
|
+
if (moduleName.startsWith('react-native/')) {
|
|
44
|
+
return { type: 'empty' };
|
|
45
|
+
}
|
|
43
46
|
switch (moduleName) {
|
|
44
47
|
case 'expo':
|
|
45
48
|
return { type: 'sourceFile', filePath: expoStubPath };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-widgets",
|
|
3
|
-
"version": "57.0.
|
|
3
|
+
"version": "57.0.14",
|
|
4
4
|
"description": "Widgets.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@types/react": "~19.2.0",
|
|
31
31
|
"react-native": "0.86.3",
|
|
32
32
|
"resolve-workspace-root": "^2.0.0",
|
|
33
|
-
"expo": "57.0.
|
|
33
|
+
"expo": "57.0.18",
|
|
34
34
|
"expo-module-scripts": "56.0.3"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"./scripts/xcode-build-bundle.sh"
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "d1faa3687f2acf3870c4547a6221b7d83096bf78",
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "expo-module build",
|
|
50
50
|
"build:plugin": "expo-module build plugin",
|