@expo/config-types 53.0.3 → 53.0.5
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/build/ExpoConfig.d.ts +10 -1
- package/package.json +3 -3
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -285,7 +285,16 @@ export interface ExpoConfig {
|
|
|
285
285
|
*/
|
|
286
286
|
reactServerFunctions?: boolean;
|
|
287
287
|
/**
|
|
288
|
-
* Experimentally enable downloading cached builds from
|
|
288
|
+
* Experimentally enable downloading cached builds from a provider.
|
|
289
|
+
*/
|
|
290
|
+
buildCacheProvider?: 'eas' | {
|
|
291
|
+
plugin: string;
|
|
292
|
+
options?: {
|
|
293
|
+
[k: string]: any;
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* @deprecated This field will be removed in a future release, use the `buildCacheProvider` field instead.
|
|
289
298
|
*/
|
|
290
299
|
remoteBuildCache?: {
|
|
291
300
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "53.0.
|
|
3
|
+
"version": "53.0.5",
|
|
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,11 +37,11 @@
|
|
|
37
37
|
"build"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"expo-module-scripts": "^4.1.
|
|
40
|
+
"expo-module-scripts": "^4.1.9",
|
|
41
41
|
"json-schema-to-typescript": "^14.0.5"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "7980ffdc39bf0ca82e62b59148a43ed755991ecb"
|
|
47
47
|
}
|