first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

14
node_modules/@expo/xcpretty/build/Runner.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
export declare function formatXcodeBuildPipeProcessAsync(projectRoot: string, { xcodeProjectName }?: {
xcodeProjectName?: string;
}): Promise<string>;
export declare function createXcodeBuildHooks(projectRoot: string, { xcodeProjectName, resolve, reject, }: {
xcodeProjectName?: string;
resolve: (buildOutput: string) => void;
reject: (error: Error) => void;
}): {
onData: (data: Buffer) => void;
onErr: (data: Buffer) => void;
onEnd: (code: number) => void;
};
export declare function writeBuildLogs(projectRoot: string, buildOutput: string, errorOutput: string): string;
export declare function getErrorLogFilePath(projectRoot: string): [string, string];