babel-preset-expo 54.0.5-canary-20251015-a6a1272 → 54.0.5

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/build/common.d.ts CHANGED
@@ -7,7 +7,7 @@ export declare function getPossibleProjectRoot(caller?: any): string | null | un
7
7
  /** If bundling for a react-server target. */
8
8
  export declare function getIsReactServer(caller?: any): boolean;
9
9
  export declare function getIsDev(caller?: any): boolean;
10
- export declare function getIsFastRefreshEnabled(caller?: any): boolean | undefined;
10
+ export declare function getIsFastRefreshEnabled(caller?: any): boolean;
11
11
  export declare function getIsProd(caller?: any): boolean;
12
12
  export declare function getIsNodeModule(caller?: any): boolean;
13
13
  export declare function getBaseUrl(caller?: any): string;
package/build/common.js CHANGED
@@ -92,7 +92,7 @@ function getIsFastRefreshEnabled(caller) {
92
92
  assertExpoBabelCaller(caller);
93
93
  if (!caller)
94
94
  return false;
95
- return caller.isHMREnabled && !caller.isServer && !caller.isNodeModule && getIsDev(caller);
95
+ return !caller.isServer && !caller.isNodeModule && getIsDev(caller);
96
96
  }
97
97
  function getIsProd(caller) {
98
98
  assertExpoBabelCaller(caller);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babel-preset-expo",
3
- "version": "54.0.5-canary-20251015-a6a1272",
3
+ "version": "54.0.5",
4
4
  "description": "The Babel preset for Expo projects",
5
5
  "main": "build/index.js",
6
6
  "files": [
@@ -43,7 +43,7 @@
43
43
  "peerDependencies": {
44
44
  "@babel/runtime": "^7.20.0",
45
45
  "react-refresh": ">=0.14.0 <1.0.0",
46
- "expo": "55.0.0-canary-20251015-a6a1272"
46
+ "expo": "*"
47
47
  },
48
48
  "peerDependenciesMeta": {
49
49
  "@babel/runtime": {
@@ -69,7 +69,7 @@
69
69
  "@babel/plugin-transform-parameters": "^7.24.7",
70
70
  "@babel/preset-react": "^7.22.15",
71
71
  "@babel/preset-typescript": "^7.23.0",
72
- "@react-native/babel-preset": "0.82.0",
72
+ "@react-native/babel-preset": "0.81.4",
73
73
  "babel-plugin-react-compiler": "^1.0.0",
74
74
  "babel-plugin-react-native-web": "~0.21.0",
75
75
  "babel-plugin-transform-flow-enums": "^0.0.2",
@@ -80,9 +80,10 @@
80
80
  "devDependencies": {
81
81
  "@babel/core": "^7.26.0",
82
82
  "@types/babel__core": "^7.20.5",
83
- "@expo/metro": "~54.0.0",
84
- "expo-module-scripts": "5.0.8-canary-20251015-a6a1272",
83
+ "@expo/metro": "~54.1.0",
84
+ "expo-module-scripts": "^5.0.7",
85
85
  "jest": "^29.2.1",
86
86
  "react-refresh": "^0.14.2"
87
- }
87
+ },
88
+ "gitHead": "ea56136a4420322f46d00e4b1549595d8f85150e"
88
89
  }