expo-build-properties 1.0.0-canary-20240904-69100c1 → 1.0.0-canary-20240927-ab8a962

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
@@ -14,6 +14,10 @@
14
14
 
15
15
  - Export missing types. ([#29401](https://github.com/expo/expo/pull/29401) by [@Simek](https://github.com/Simek))
16
16
 
17
+ ## 0.12.5 - 2024-08-07
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
17
21
  ## 0.12.4 - 2024-07-30
18
22
 
19
23
  ### 🎉 New features
package/build/ios.js CHANGED
@@ -53,8 +53,7 @@ function updateDeploymentTargetXcodeProject(project, deploymentTarget) {
53
53
  .filter(([_, target]) => Target.isTargetOfType(target, Target.TargetType.APPLICATION))
54
54
  .map(([_, target]) => target.buildConfigurationList);
55
55
  for (const buildConfigListId of targetBuildConfigListIds) {
56
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
57
- for (const [_, configurations] of config_plugins_1.IOSConfig.XcodeUtils.getBuildConfigurationsForListId(project, buildConfigListId)) {
56
+ for (const [, configurations] of config_plugins_1.IOSConfig.XcodeUtils.getBuildConfigurationsForListId(project, buildConfigListId)) {
58
57
  const { buildSettings } = configurations;
59
58
  if (buildSettings?.IPHONEOS_DEPLOYMENT_TARGET) {
60
59
  buildSettings.IPHONEOS_DEPLOYMENT_TARGET = deploymentTarget;
@@ -107,9 +107,6 @@ export interface PluginConfigTypeAndroid {
107
107
  * ```
108
108
  *
109
109
  * @see [Gradle documentation](https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven)
110
- *
111
- * @hide For the implementation details,
112
- * this property is actually handled by `expo-modules-autolinking` not the config-plugins inside `expo-build-properties`
113
110
  */
114
111
  extraMavenRepos?: (AndroidMavenRepository | string)[];
115
112
  /**
@@ -227,9 +224,6 @@ export interface PluginConfigTypeIos {
227
224
  * ```ruby
228
225
  * pod 'Protobuf', '~> 3.14.0'
229
226
  * ```
230
- *
231
- * @hide For the implementation details,
232
- * this property is actually handled by `expo-modules-autolinking` but not the config-plugins inside `expo-build-properties`.
233
227
  */
234
228
  extraPods?: ExtraIosPodDependency[];
235
229
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-build-properties",
3
- "version": "1.0.0-canary-20240904-69100c1",
3
+ "version": "1.0.0-canary-20240927-ab8a962",
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": "3.6.0-canary-20240904-69100c1"
38
+ "expo-module-scripts": "3.6.0-canary-20240927-ab8a962"
39
39
  },
40
40
  "peerDependencies": {
41
- "expo": "*"
41
+ "expo": "52.0.0-canary-20240927-ab8a962"
42
42
  },
43
- "gitHead": "69100c1b099b707057c052ed8096e06cb208aca1"
43
+ "gitHead": "ab8a962d2c3dddbda124a6bd88d24475831dae00"
44
44
  }
package/src/ios.ts CHANGED
@@ -73,8 +73,7 @@ function updateDeploymentTargetXcodeProject(
73
73
  .map(([_, target]) => target.buildConfigurationList);
74
74
 
75
75
  for (const buildConfigListId of targetBuildConfigListIds) {
76
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
77
- for (const [_, configurations] of IOSConfig.XcodeUtils.getBuildConfigurationsForListId(
76
+ for (const [, configurations] of IOSConfig.XcodeUtils.getBuildConfigurationsForListId(
78
77
  project,
79
78
  buildConfigListId
80
79
  )) {
@@ -94,6 +94,8 @@ export interface PluginConfigTypeAndroid {
94
94
  */
95
95
  networkInspector?: boolean;
96
96
 
97
+ // For the implementation details, this property is actually handled by `expo-modules-autolinking`
98
+ // not the config-plugins inside `expo-build-properties`
97
99
  /**
98
100
  * Add extra maven repositories to all gradle projects.
99
101
  *
@@ -129,9 +131,6 @@ export interface PluginConfigTypeAndroid {
129
131
  * ```
130
132
  *
131
133
  * @see [Gradle documentation](https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven)
132
- *
133
- * @hide For the implementation details,
134
- * this property is actually handled by `expo-modules-autolinking` not the config-plugins inside `expo-build-properties`
135
134
  */
136
135
  extraMavenRepos?: (AndroidMavenRepository | string)[];
137
136
  /**
@@ -247,6 +246,8 @@ export interface PluginConfigTypeIos {
247
246
  */
248
247
  networkInspector?: boolean;
249
248
 
249
+ // For the implementation details, this property is actually handled by `expo-modules-autolinking`
250
+ // but not the config-plugins inside `expo-build-properties`.
250
251
  /**
251
252
  * Add extra CocoaPods dependencies for all targets.
252
253
  *
@@ -266,9 +267,6 @@ export interface PluginConfigTypeIos {
266
267
  * ```ruby
267
268
  * pod 'Protobuf', '~> 3.14.0'
268
269
  * ```
269
- *
270
- * @hide For the implementation details,
271
- * this property is actually handled by `expo-modules-autolinking` but not the config-plugins inside `expo-build-properties`.
272
270
  */
273
271
  extraPods?: ExtraIosPodDependency[];
274
272