@expo/config-types 52.0.0 → 52.0.2
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/README.md +1 -1
- package/build/ExpoConfig.d.ts +12 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -33,6 +33,6 @@ export default (): ExpoConfig => {
|
|
|
33
33
|
This package is 100% generated using the versioned JSON schemas from the Expo server.
|
|
34
34
|
|
|
35
35
|
- `yarn generate` - uses the major version from the `package.json`.
|
|
36
|
-
- `yarn generate --path
|
|
36
|
+
- `yarn generate --path ../../../../universe/server/www/xdl-schemas/UNVERSIONED-schema.json` - uses the latest version from your local directory.
|
|
37
37
|
- `yarn generate 39` - uses the given version.
|
|
38
38
|
- `yarn generate unversioned` - uses the latest version.
|
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -156,12 +156,6 @@ export interface ExpoConfig {
|
|
|
156
156
|
extra?: {
|
|
157
157
|
[k: string]: any;
|
|
158
158
|
};
|
|
159
|
-
/**
|
|
160
|
-
* @deprecated Use a `metro.config.js` file instead. [Learn more](https://docs.expo.dev/guides/customizing-metro/)
|
|
161
|
-
*/
|
|
162
|
-
packagerOpts?: {
|
|
163
|
-
[k: string]: any;
|
|
164
|
-
};
|
|
165
159
|
/**
|
|
166
160
|
* Configuration for the expo-updates library
|
|
167
161
|
*/
|
|
@@ -275,13 +269,13 @@ export interface ExpoConfig {
|
|
|
275
269
|
*/
|
|
276
270
|
reactCompiler?: boolean;
|
|
277
271
|
/**
|
|
278
|
-
* Experimentally enable React Server Components
|
|
272
|
+
* Experimentally enable React Server Components by default in Expo Router and concurrent routing for transitions.
|
|
279
273
|
*/
|
|
280
|
-
|
|
274
|
+
reactServerComponentRoutes?: boolean;
|
|
281
275
|
/**
|
|
282
|
-
* Experimentally enable React Server
|
|
276
|
+
* Experimentally enable React Server Functions support in Expo CLI and Expo Router.
|
|
283
277
|
*/
|
|
284
|
-
|
|
278
|
+
reactServerFunctions?: boolean;
|
|
285
279
|
};
|
|
286
280
|
/**
|
|
287
281
|
* Internal properties for developer tools
|
|
@@ -531,6 +525,10 @@ export interface IOS {
|
|
|
531
525
|
runtimeVersion?: string | {
|
|
532
526
|
policy: 'nativeVersion' | 'sdkVersion' | 'appVersion' | 'fingerprint';
|
|
533
527
|
};
|
|
528
|
+
/**
|
|
529
|
+
* Your iOS app version. Takes precedence over the root `version` field. In addition to this field, you'll also use `ios.buildNumber` — read more about how to version your app [here](https://docs.expo.dev/distribution/app-stores/#versioning-your-app). This corresponds to `CFBundleShortVersionString`. The required format can be found [here](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring).
|
|
530
|
+
*/
|
|
531
|
+
version?: string;
|
|
534
532
|
}
|
|
535
533
|
/**
|
|
536
534
|
* Configuration that is specific to the iOS platform icons.
|
|
@@ -779,6 +777,10 @@ export interface Android {
|
|
|
779
777
|
runtimeVersion?: string | {
|
|
780
778
|
policy: 'nativeVersion' | 'sdkVersion' | 'appVersion' | 'fingerprint';
|
|
781
779
|
};
|
|
780
|
+
/**
|
|
781
|
+
* Your android app version. Takes precedence over the root `version` field. In addition to this field, you'll also use `android.versionCode` — read more about how to version your app [here](https://docs.expo.dev/distribution/app-stores/#versioning-your-app). This corresponds to `versionName`. The required format can be found [here](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleshortversionstring).
|
|
782
|
+
*/
|
|
783
|
+
version?: string;
|
|
782
784
|
}
|
|
783
785
|
export interface AndroidIntentFiltersData {
|
|
784
786
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "52.0.
|
|
3
|
+
"version": "52.0.2",
|
|
4
4
|
"description": "Types for the Expo config object app.config.ts",
|
|
5
5
|
"types": "build/ExpoConfig.d.ts",
|
|
6
6
|
"main": "build/ExpoConfig.js",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "2b1665813da33743f475699cab0b207ecba17627"
|
|
48
48
|
}
|