@expo/config-types 56.0.1 → 56.0.3

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.
@@ -205,6 +205,10 @@ export interface ExpoConfig {
205
205
  * Enable experimental features that may be unstable, unsupported, or removed without deprecation notices.
206
206
  */
207
207
  experiments?: {
208
+ /**
209
+ * Enables Expo's On-Demand Filesystem allowing Metro bundling outside of the watchFolders and with package manager global virtual stores.
210
+ */
211
+ onDemandFilesystem?: boolean;
208
212
  /**
209
213
  * Apply Expo Autolinking's search results to Metro's module resolution. This forces your project's dependencies on `react`, `react-dom`, and `react-native`, and the autolinked versions of any Expo and React Native modules to be resolved when bundling your app. This prevents version misalignment and is useful for monorepos and to prevent conflicts.
210
214
  */
@@ -226,10 +230,6 @@ export interface ExpoConfig {
226
230
  * If true, indicates that this project does not support tablets or handsets, and only supports Apple TV and Android TV
227
231
  */
228
232
  supportsTVOnly?: boolean;
229
- /**
230
- * Enable React-based CSS support for native platforms. Only supports a subset of CSS properties, class names selectors, and has no cascading.
231
- */
232
- functionalCSS?: boolean;
233
233
  /**
234
234
  * Enable tsconfig/jsconfig `compilerOptions.paths` and `compilerOptions.baseUrl` support for import aliases in Metro.
235
235
  */
@@ -1,7 +1,5 @@
1
1
  "use strict";
2
+ /* eslint-disable */
2
3
  /* tslint:disable */
3
- /**
4
- * The standard Expo config object defined in `app.config.js` files.
5
- */
6
4
  Object.defineProperty(exports, "__esModule", { value: true });
7
5
  //# sourceMappingURL=ExpoConfig.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ExpoConfig.js","sourceRoot":"","sources":["../src/ExpoConfig.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB;;GAEG"}
1
+ {"version":3,"file":"ExpoConfig.js","sourceRoot":"","sources":["../src/ExpoConfig.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "56.0.1",
3
+ "version": "56.0.3",
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",
@@ -29,13 +29,14 @@
29
29
  "chalk": "^4.1.2",
30
30
  "commander": "^12.1.0",
31
31
  "json-schema-to-typescript": "^15.0.0",
32
+ "prettier": "^3.8.3",
32
33
  "semver": "^7.7.4",
33
- "expo-module-scripts": "56.0.1"
34
+ "expo-module-scripts": "56.0.2"
34
35
  },
35
36
  "publishConfig": {
36
37
  "access": "public"
37
38
  },
38
- "gitHead": "71ec800b2fa6133d22d69b70945132e22f1b7ae8",
39
+ "gitHead": "40f0a6f6711d93762e0506b37e6e077e4bd9a541",
39
40
  "scripts": {
40
41
  "build": "expo-module tsc",
41
42
  "clean": "expo-module clean",