expo-build-properties 56.0.13 → 56.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 CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 56.0.14 — 2026-05-23
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Default `ios.usePrecompiledModules` to `true` so the plugin matches the Podfile default (precompiled modules enabled) instead of silently disabling them. ([#46159](https://github.com/expo/expo/pull/46159) by [@vonovak](https://github.com/vonovak))
18
+
13
19
  ## 56.0.13 — 2026-05-21
14
20
 
15
21
  _This version does not introduce any user-facing changes._
package/build/ios.js CHANGED
@@ -42,7 +42,7 @@ exports.withIosBuildProperties = createBuildPodfilePropsConfigPlugin([
42
42
  },
43
43
  {
44
44
  propName: 'EXPO_USE_PRECOMPILED_MODULES',
45
- propValueGetter: (config) => (config.ios?.usePrecompiledModules ?? false).toString(),
45
+ propValueGetter: (config) => (config.ios?.usePrecompiledModules ?? true).toString(),
46
46
  },
47
47
  ], 'withIosBuildProperties');
48
48
  /** @deprecated use built-in `ios.deploymentTarget` property instead. */
@@ -372,7 +372,7 @@ export interface PluginConfigTypeIos extends SharedBuildConfigFields {
372
372
  * When enabled, sets the `EXPO_USE_PRECOMPILED_MODULES` environment variable to `1`
373
373
  * during `pod install`, which causes matching modules to be linked as vendored frameworks.
374
374
  *
375
- * @default false
375
+ * @default true
376
376
  */
377
377
  usePrecompiledModules?: boolean;
378
378
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-build-properties",
3
- "version": "56.0.13",
3
+ "version": "56.0.14",
4
4
  "description": "Config plugin to customize native build properties on prebuild",
5
5
  "main": "build/withBuildProperties.js",
6
6
  "types": "build/withBuildProperties.d.ts",
@@ -35,13 +35,13 @@
35
35
  "devDependencies": {
36
36
  "@types/node": "^22.14.0",
37
37
  "@types/semver": "^7.0.0",
38
- "expo": "56.0.3",
38
+ "expo": "56.0.4",
39
39
  "expo-module-scripts": "56.0.2"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "expo": "*"
43
43
  },
44
- "gitHead": "125e8225bf36a4b9b2a159441d9ea724bcf1110f",
44
+ "gitHead": "6dfb0e4c958a1ea1d66d3f7952494ac58430ad45",
45
45
  "scripts": {
46
46
  "build": "expo-module build",
47
47
  "clean": "expo-module clean",
package/src/ios.ts CHANGED
@@ -47,7 +47,7 @@ export const withIosBuildProperties = createBuildPodfilePropsConfigPlugin<Plugin
47
47
  },
48
48
  {
49
49
  propName: 'EXPO_USE_PRECOMPILED_MODULES',
50
- propValueGetter: (config) => (config.ios?.usePrecompiledModules ?? false).toString(),
50
+ propValueGetter: (config) => (config.ios?.usePrecompiledModules ?? true).toString(),
51
51
  },
52
52
  ],
53
53
  'withIosBuildProperties'
@@ -442,7 +442,7 @@ export interface PluginConfigTypeIos extends SharedBuildConfigFields {
442
442
  * When enabled, sets the `EXPO_USE_PRECOMPILED_MODULES` environment variable to `1`
443
443
  * during `pod install`, which causes matching modules to be linked as vendored frameworks.
444
444
  *
445
- * @default false
445
+ * @default true
446
446
  */
447
447
  usePrecompiledModules?: boolean;
448
448
  }