expo-module-scripts 5.0.8-canary-20251023-4c86f95 → 5.1.0-canary-20251118-4ca99d5

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,10 +6,14 @@
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
12
14
 
15
+ - Add more tests related files to the `.npmignore` template. ([#39551](https://github.com/expo/expo/pull/39551) by [@Simek](https://github.com/Simek))
16
+
13
17
  ## 5.0.7 — 2025-09-10
14
18
 
15
19
  _This version does not introduce any user-facing changes._
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-module-scripts",
3
- "version": "5.0.8-canary-20251023-4c86f95",
3
+ "version": "5.1.0-canary-20251118-4ca99d5",
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-20251023-4c86f95",
38
+ "babel-preset-expo": "54.1.0-canary-20251118-4ca99d5",
39
39
  "commander": "^12.1.0",
40
- "eslint-config-universe": "15.0.4-canary-20251023-4c86f95",
40
+ "eslint-config-universe": "15.0.4-canary-20251118-4ca99d5",
41
41
  "glob": "^10.4.2",
42
- "jest-expo": "55.0.0-canary-20251023-4c86f95",
42
+ "jest-expo": "55.0.0-canary-20251118-4ca99d5",
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