expo-build-properties 0.8.2 → 0.9.0
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 +8 -0
- package/build/pluginConfig.d.ts +1 -1
- package/package.json +2 -2
- package/src/pluginConfig.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.9.0 — 2023-07-28
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 0.8.3 — 2023-06-28
|
|
18
|
+
|
|
19
|
+
_This version does not introduce any user-facing changes._
|
|
20
|
+
|
|
13
21
|
## 0.8.2 — 2023-06-27
|
|
14
22
|
|
|
15
23
|
### 💡 Others
|
package/build/pluginConfig.d.ts
CHANGED
|
@@ -119,7 +119,7 @@ export interface PluginConfigTypeIos {
|
|
|
119
119
|
* Enable [`use_frameworks!`](https://guides.cocoapods.org/syntax/podfile.html#use_frameworks_bang)
|
|
120
120
|
* in `Podfile` to use frameworks instead of static libraries for Pods.
|
|
121
121
|
*
|
|
122
|
-
* > You cannot use `useFrameworks` and `flipper` at the same time
|
|
122
|
+
* > You cannot use `useFrameworks` and `flipper` at the same time, and
|
|
123
123
|
* doing so will generate an error.
|
|
124
124
|
*/
|
|
125
125
|
useFrameworks?: 'static' | 'dynamic';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-build-properties",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
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",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"expo": "*"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "663654577a7068c641b5e9474efbc502e3f334ea"
|
|
44
44
|
}
|
package/src/pluginConfig.ts
CHANGED
|
@@ -144,7 +144,7 @@ export interface PluginConfigTypeIos {
|
|
|
144
144
|
* Enable [`use_frameworks!`](https://guides.cocoapods.org/syntax/podfile.html#use_frameworks_bang)
|
|
145
145
|
* in `Podfile` to use frameworks instead of static libraries for Pods.
|
|
146
146
|
*
|
|
147
|
-
* > You cannot use `useFrameworks` and `flipper` at the same time
|
|
147
|
+
* > You cannot use `useFrameworks` and `flipper` at the same time, and
|
|
148
148
|
* doing so will generate an error.
|
|
149
149
|
*/
|
|
150
150
|
useFrameworks?: 'static' | 'dynamic';
|