expo-doctor 1.14.0 → 1.15.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 InstalledDependencyVersionCheck 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
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Parses the output from `npx expo install --check --json` and formats dependency
|
|
3
|
+
* version mismatches into a structured, color-coded report.
|
|
4
|
+
*
|
|
5
|
+
* @param stdout - Raw stdout from `npx expo install --check --json` command
|
|
6
|
+
* @param issues - Array to append formatted issue messages to
|
|
7
|
+
* @param projectMajorSdkVersion - The major version of the project's SDK
|
|
8
|
+
*/
|
|
9
|
+
export declare function parseInstallCheckOutput(stdout: string, issues: string[], projectMajorSdkVersion: number): void;
|