@expo/config-types 52.0.0 → 52.0.1

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 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 ../../../universe/server/www/xdl-schemas/UNVERSIONED-schema.json` - uses the latest version from your local directory.
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.
@@ -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 support in Expo CLI and Expo Router.
272
+ * Experimentally enable React Server Components by default in Expo Router and concurrent routing for transitions.
279
273
  */
280
- reactServerComponents?: boolean;
274
+ reactServerComponentRoutes?: boolean;
281
275
  /**
282
- * Experimentally enable React Server Actions support in Expo CLI and Expo Router.
276
+ * Experimentally enable React Server Functions support in Expo CLI and Expo Router.
283
277
  */
284
- reactServerActions?: boolean;
278
+ reactServerFunctions?: boolean;
285
279
  };
286
280
  /**
287
281
  * Internal properties for developer tools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "52.0.0",
3
+ "version": "52.0.1",
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": "8f11fad6f46b878de4746b49b18599fc57b5729f"
47
+ "gitHead": "2c50bd7f0abaefb6fabcfd6d3935066724990b33"
48
48
  }