Home
last modified time | relevance | path

Searched refs:xcodeprojPath (Results 1 – 2 of 2) sorted by relevance

/expo/tools/src/prebuilds/
H A DXcodeProject.ts28 static async fromXcodeprojPathAsync(xcodeprojPath: string): Promise<XcodeProject> {
29 if (!(await fs.pathExists(xcodeprojPath))) {
30 throw new Error(`Xcodeproj not found at path: ${xcodeprojPath}`);
32 return new XcodeProject(xcodeprojPath);
39 const xcodeprojPath = await generateXcodeProjectAsync(dir, spec); constant
40 return new XcodeProject(xcodeprojPath);
53 constructor(xcodeprojPath: string) {
54 this.name = path.basename(xcodeprojPath, '.xcodeproj');
55 this.rootDir = path.dirname(xcodeprojPath);
H A DPrebuilder.ts198 const xcodeprojPath = await generateXcodeProjectAsync(dir, spec); constant
199 return await XcodeProject.fromXcodeprojPathAsync(xcodeprojPath);