Searched refs:xcodeprojPath (Results 1 – 2 of 2) sorted by relevance
28 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); constant40 return new XcodeProject(xcodeprojPath);53 constructor(xcodeprojPath: string) {54 this.name = path.basename(xcodeprojPath, '.xcodeproj');55 this.rootDir = path.dirname(xcodeprojPath);
198 const xcodeprojPath = await generateXcodeProjectAsync(dir, spec); constant199 return await XcodeProject.fromXcodeprojPathAsync(xcodeprojPath);