Lines Matching refs:podspecPath
76 podspecPath?: string;
118 get podspecPath(): string | null {
119 if (this.expoModuleConfig?.ios?.podspecPath) {
120 return this.expoModuleConfig.ios.podspecPath;
124 const [podspecPath] = glob.sync(`{*,${this.iosSubdirectory}/*}.podspec`, { constant
128 return podspecPath || null;
142 const podspecPath = this.podspecPath; constant
143 if (!podspecPath) {
146 return path.basename(podspecPath, '.podspec');
294 const podspecPath = path.join(this.path, 'ios/Pods/Local Podspecs', `${podName}.podspec.json`); constant
295 return await fs.pathExists(podspecPath);
331 !!this.podspecPath &&
332 fs.readFileSync(path.join(this.path, this.podspecPath), 'utf8').includes('test_spec')
354 if (!this.podspecPath) {
357 const podspecPath = path.join(this.path, this.podspecPath); constant
358 return await readPodspecAsync(podspecPath);