expo-module-scripts 5.0.8-canary-20251031-b135dff → 5.1.0-canary-20251118-8f7ee64

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
@@ -6,6 +6,8 @@
6
6
 
7
7
  ### 🎉 New features
8
8
 
9
+ - Ensure `loader()` functions are stripped from client bundles ([#40670](https://github.com/expo/expo/pull/40670) by [@hassankhan](https://github.com/hassankhan))
10
+
9
11
  ### 🐛 Bug fixes
10
12
 
11
13
  ### 💡 Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-module-scripts",
3
- "version": "5.0.8-canary-20251031-b135dff",
3
+ "version": "5.1.0-canary-20251118-8f7ee64",
4
4
  "description": "A private package for various tasks for Expo module packages like compiling and testing",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -35,11 +35,11 @@
35
35
  "@tsconfig/node18": "^18.2.2",
36
36
  "@types/jest": "^29.2.1",
37
37
  "babel-plugin-dynamic-import-node": "^2.3.3",
38
- "babel-preset-expo": "54.0.7-canary-20251031-b135dff",
38
+ "babel-preset-expo": "54.1.0-canary-20251118-8f7ee64",
39
39
  "commander": "^12.1.0",
40
- "eslint-config-universe": "15.0.4-canary-20251031-b135dff",
40
+ "eslint-config-universe": "15.0.4-canary-20251118-8f7ee64",
41
41
  "glob": "^10.4.2",
42
- "jest-expo": "55.0.0-canary-20251031-b135dff",
42
+ "jest-expo": "55.0.0-canary-20251118-8f7ee64",
43
43
  "jest-snapshot-prettier": "npm:prettier@^2",
44
44
  "jest-watch-typeahead": "2.2.1",
45
45
  "resolve-workspace-root": "^2.0.0",
@@ -28,6 +28,8 @@ declare module '@expo/metro/metro-babel-transformer' {
28
28
  expoDomComponentReference?: string;
29
29
  /** @privateRemarks Augmentation used in babel-preset-expo/src/detect-dynamic-exports.ts */
30
30
  hasCjsExports?: boolean;
31
+ /** @privateRemarks Augmentation used in babel-preset-expo/src/server-data-loaders-plugin.ts */
32
+ performConstantFolding?: boolean;
31
33
  }
32
34
  }
33
35