expo-doctor 1.12.10 → 1.13.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.
@@ -2,5 +2,5 @@ import { DoctorCheck, DoctorCheckParams, DoctorCheckResult } from './checks.type
2
2
  export declare class NativeToolingVersionCheck implements DoctorCheck {
3
3
  description: string;
4
4
  sdkVersionRange: string;
5
- runAsync({ projectRoot }: DoctorCheckParams): Promise<DoctorCheckResult>;
5
+ runAsync({ exp, projectRoot }: DoctorCheckParams): Promise<DoctorCheckResult>;
6
6
  }
@@ -1,4 +1,5 @@
1
1
  import { DoctorCheck, DoctorCheckParams, DoctorCheckResult } from './checks.types';
2
+ export declare const DEFAULT_PACKAGES_TO_IGNORE: (string | RegExp)[];
2
3
  export declare function filterPackages(packages: string[], ignoredPackages: (RegExp | string)[]): string[];
3
4
  export declare class ReactNativeDirectoryCheck implements DoctorCheck {
4
5
  description: string;
@@ -8,7 +8,7 @@ export interface DoctorCheckResult {
8
8
  isSuccessful: boolean;
9
9
  /** many checks currently output their own issues, no need to duplicate */
10
10
  issues: string[];
11
- advice?: string;
11
+ advice: string[];
12
12
  }
13
13
  export interface DoctorCheckParams {
14
14
  projectRoot: string;