@expo/config-types 52.0.2 → 52.0.4

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.
@@ -207,6 +207,10 @@ export interface ExpoConfig {
207
207
  * Array of glob patterns specifying which files should be included in updates. Glob patterns are relative to the project root. A value of `['**']` will match all asset files within the project root. When not supplied all asset files will be included. Example: Given a value of `['app/images/** /*.png', 'app/fonts/** /*.woff']` all `.png` files in all subdirectories of `app/images` and all `.woff` files in all subdirectories of `app/fonts` will be included in updates.
208
208
  */
209
209
  assetPatternsToBeBundled?: string[];
210
+ /**
211
+ * Whether to disable the built-in expo-updates anti-bricking measures. Defaults to false. If set to true, this will allow overriding certain configuration options from the JS API, which is liable to leave an app in a bricked state if not done carefully. This should not be used in production.
212
+ */
213
+ disableAntiBrickingMeasures?: boolean;
210
214
  };
211
215
  /**
212
216
  * Provide overrides by locale for System Dialog prompts like Permissions Boxes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/config-types",
3
- "version": "52.0.2",
3
+ "version": "52.0.4",
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",
@@ -37,12 +37,12 @@
37
37
  "build"
38
38
  ],
39
39
  "devDependencies": {
40
- "expo-module-scripts": "^4.0.0",
40
+ "expo-module-scripts": "^4.0.3",
41
41
  "json-schema-to-typescript": "^14.0.5",
42
42
  "ts-node": "^10.9.1"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "2b1665813da33743f475699cab0b207ecba17627"
47
+ "gitHead": "9442f00874e0cd738030abae80e5bdef184a2581"
48
48
  }