expo-build-properties 1.0.5 → 1.0.6
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 +4 -0
- package/build/pluginConfig.d.ts +2 -1
- package/package.json +3 -3
- package/src/pluginConfig.ts +2 -1
package/CHANGELOG.md
CHANGED
package/build/pluginConfig.d.ts
CHANGED
|
@@ -325,8 +325,9 @@ export interface PluginConfigTypeIos {
|
|
|
325
325
|
privacyManifestAggregationEnabled?: boolean;
|
|
326
326
|
/**
|
|
327
327
|
* Enables support for precompiled React Native iOS dependencies (`ReactNativeDependencies.xcframework`).
|
|
328
|
+
* Setting this value to `true` will enable building React Native from source and disable the use of precompiled xcframeworks.
|
|
328
329
|
* This feature is available from React Native 0.80 and later when using the new architecture.
|
|
329
|
-
* From React Native 0.81, this setting will also use a precompiled React Native Core (`React.xcframework`).
|
|
330
|
+
* From React Native 0.81, this setting will also control the use of a precompiled React Native Core (`React.xcframework`).
|
|
330
331
|
*
|
|
331
332
|
* @default false
|
|
332
333
|
* @see React Expo blog for details: [Precompiled React Native for iOS: Faster builds are coming in 0.81](https://expo.dev/blog/precompiled-react-native-for-ios) for more information.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-build-properties",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
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,10 +35,10 @@
|
|
|
35
35
|
"semver": "^7.6.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"expo-module-scripts": "^5.0.
|
|
38
|
+
"expo-module-scripts": "^5.0.5"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"expo": "*"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "1dafdaa317c182191909a94a355c8b08a2654783"
|
|
44
44
|
}
|
package/src/pluginConfig.ts
CHANGED
|
@@ -380,8 +380,9 @@ export interface PluginConfigTypeIos {
|
|
|
380
380
|
|
|
381
381
|
/**
|
|
382
382
|
* Enables support for precompiled React Native iOS dependencies (`ReactNativeDependencies.xcframework`).
|
|
383
|
+
* Setting this value to `true` will enable building React Native from source and disable the use of precompiled xcframeworks.
|
|
383
384
|
* This feature is available from React Native 0.80 and later when using the new architecture.
|
|
384
|
-
* From React Native 0.81, this setting will also use a precompiled React Native Core (`React.xcframework`).
|
|
385
|
+
* From React Native 0.81, this setting will also control the use of a precompiled React Native Core (`React.xcframework`).
|
|
385
386
|
*
|
|
386
387
|
* @default false
|
|
387
388
|
* @see React Expo blog for details: [Precompiled React Native for iOS: Faster builds are coming in 0.81](https://expo.dev/blog/precompiled-react-native-for-ios) for more information.
|