expo-module-scripts 5.1.0-canary-20260105-6b962e6 → 5.1.0-canary-20260113-0ce2b9c
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
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
- Ensure `loader()` functions are stripped from client bundles ([#40670](https://github.com/expo/expo/pull/40670) by [@hassankhan](https://github.com/hassankhan))
|
|
10
10
|
- Rewrite using Node.js to add Windows support. ([#36296](https://github.com/expo/expo/pull/36296) by [@Simek](https://github.com/Simek) and [@kudo](https://github.com/kudo))
|
|
11
|
+
- Add support for server data loaders in server export mode ([#41934](https://github.com/expo/expo/pull/41934) by [@hassankhan](https://github.com/hassankhan))
|
|
11
12
|
|
|
12
13
|
### 🐛 Bug fixes
|
|
13
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-module-scripts",
|
|
3
|
-
"version": "5.1.0-canary-
|
|
3
|
+
"version": "5.1.0-canary-20260113-0ce2b9c",
|
|
4
4
|
"description": "A private package for various tasks for Expo module packages like compiling and testing",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -81,11 +81,11 @@
|
|
|
81
81
|
"@tsconfig/node18": "^18.2.2",
|
|
82
82
|
"@types/jest": "^29.2.1",
|
|
83
83
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
84
|
-
"babel-preset-expo": "54.1.0-canary-
|
|
84
|
+
"babel-preset-expo": "54.1.0-canary-20260113-0ce2b9c",
|
|
85
85
|
"commander": "^12.1.0",
|
|
86
|
-
"eslint-config-universe": "15.0.4-canary-
|
|
86
|
+
"eslint-config-universe": "15.0.4-canary-20260113-0ce2b9c",
|
|
87
87
|
"glob": "^13.0.0",
|
|
88
|
-
"jest-expo": "55.0.0-canary-
|
|
88
|
+
"jest-expo": "55.0.0-canary-20260113-0ce2b9c",
|
|
89
89
|
"jest-snapshot-prettier": "npm:prettier@^2",
|
|
90
90
|
"jest-watch-typeahead": "2.2.1",
|
|
91
91
|
"resolve-workspace-root": "^2.0.0",
|
|
@@ -30,6 +30,8 @@ declare module '@expo/metro/metro-babel-transformer' {
|
|
|
30
30
|
hasCjsExports?: boolean;
|
|
31
31
|
/** @privateRemarks Augmentation used in babel-preset-expo/src/server-data-loaders-plugin.ts */
|
|
32
32
|
performConstantFolding?: boolean;
|
|
33
|
+
/** @privateRemarks Augmentation used in babel-preset-expo/src/server-data-loaders-plugin.ts */
|
|
34
|
+
loaderReference?: string;
|
|
33
35
|
}
|
|
34
36
|
}
|
|
35
37
|
|