expo-doctor 1.16.0 → 1.17.0
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.
|
@@ -76,7 +76,9 @@ declare class Env {
|
|
|
76
76
|
* @deprecated This will be removed in the future.
|
|
77
77
|
*/
|
|
78
78
|
get EXPO_METRO_UNSTABLE_ERRORS(): boolean;
|
|
79
|
-
/** Enable the experimental sticky resolver for Metro
|
|
79
|
+
/** Enable the experimental sticky resolver for Metro (Uses Expo Autolinking results and applies them to Metro's resolution)
|
|
80
|
+
* @deprecated Replaced by `exp.experiments.autolinkingModuleResolution`
|
|
81
|
+
*/
|
|
80
82
|
get EXPO_USE_STICKY_RESOLVER(): boolean;
|
|
81
83
|
/** Enable the unstable fast resolver for Metro. */
|
|
82
84
|
get EXPO_USE_FAST_RESOLVER(): boolean;
|
|
@@ -11,6 +11,8 @@ declare class Env {
|
|
|
11
11
|
get EXPO_DOCTOR_ENABLE_DIRECTORY_CHECK(): boolean | null;
|
|
12
12
|
/** If a test makes an online check and failures due to a network error, don't count it as failing the overall doctor check */
|
|
13
13
|
get EXPO_DOCTOR_WARN_ON_NETWORK_ERRORS(): boolean;
|
|
14
|
+
/** EAS Build Platform */
|
|
15
|
+
get EAS_BUILD_PLATFORM(): 'android' | 'ios' | null;
|
|
14
16
|
}
|
|
15
17
|
export declare const env: Env;
|
|
16
18
|
export {};
|