expo-build-properties 1.0.2 → 1.0.4
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 +10 -0
- package/build/pluginConfig.d.ts +0 -6
- package/build/pluginConfig.js +0 -1
- package/package.json +3 -3
- package/src/pluginConfig.ts +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 1.0.4 — 2025-08-25
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 1.0.3 — 2025-08-18
|
|
18
|
+
|
|
19
|
+
### 💡 Others
|
|
20
|
+
|
|
21
|
+
- [ios] Removed `buildFromSource` option on iOS.
|
|
22
|
+
|
|
13
23
|
## 1.0.2 — 2025-08-16
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
package/build/pluginConfig.d.ts
CHANGED
|
@@ -333,12 +333,6 @@ export interface PluginConfigTypeIos {
|
|
|
333
333
|
* @experimental
|
|
334
334
|
*/
|
|
335
335
|
buildReactNativeFromSource?: boolean;
|
|
336
|
-
/**
|
|
337
|
-
* Enables support for prebuilt React Native iOS dependencies (`ReactNativeDependencies.xcframework`).
|
|
338
|
-
* This feature is available from React Native 0.80 and later.
|
|
339
|
-
* @deprecated Use `buildReactNativeFromSource` instead.
|
|
340
|
-
*/
|
|
341
|
-
buildFromSource?: boolean;
|
|
342
336
|
/**
|
|
343
337
|
* The React Native release level to use for the project.
|
|
344
338
|
* This can be used to enable different sets of internal React Native feature flags.
|
package/build/pluginConfig.js
CHANGED
|
@@ -181,7 +181,6 @@ const schema = {
|
|
|
181
181
|
nullable: true,
|
|
182
182
|
},
|
|
183
183
|
buildReactNativeFromSource: { type: 'boolean', nullable: true },
|
|
184
|
-
buildFromSource: { type: 'boolean', nullable: true },
|
|
185
184
|
reactNativeReleaseLevel: {
|
|
186
185
|
type: 'string',
|
|
187
186
|
enum: ['stable', 'canary', 'experimental'],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-build-properties",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
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.3"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"expo": "*"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "ef0b9ecf9645d3e93587d5ee5030dbfcbf735bbd"
|
|
44
44
|
}
|
package/src/pluginConfig.ts
CHANGED
|
@@ -389,13 +389,6 @@ export interface PluginConfigTypeIos {
|
|
|
389
389
|
*/
|
|
390
390
|
buildReactNativeFromSource?: boolean;
|
|
391
391
|
|
|
392
|
-
/**
|
|
393
|
-
* Enables support for prebuilt React Native iOS dependencies (`ReactNativeDependencies.xcframework`).
|
|
394
|
-
* This feature is available from React Native 0.80 and later.
|
|
395
|
-
* @deprecated Use `buildReactNativeFromSource` instead.
|
|
396
|
-
*/
|
|
397
|
-
buildFromSource?: boolean;
|
|
398
|
-
|
|
399
392
|
/**
|
|
400
393
|
* The React Native release level to use for the project.
|
|
401
394
|
* This can be used to enable different sets of internal React Native feature flags.
|
|
@@ -757,7 +750,6 @@ const schema: JSONSchemaType<PluginConfigType> = {
|
|
|
757
750
|
nullable: true,
|
|
758
751
|
},
|
|
759
752
|
buildReactNativeFromSource: { type: 'boolean', nullable: true },
|
|
760
|
-
buildFromSource: { type: 'boolean', nullable: true },
|
|
761
753
|
reactNativeReleaseLevel: {
|
|
762
754
|
type: 'string',
|
|
763
755
|
enum: ['stable', 'canary', 'experimental'],
|