| /expo/tools/src/ |
| H A D | Packages.ts | 76 podspecPath?: string; 118 get podspecPath(): string | null { 119 if (this.expoModuleConfig?.ios?.podspecPath) { 128 return podspecPath || null; 142 const podspecPath = this.podspecPath; constant 143 if (!podspecPath) { 295 return await fs.pathExists(podspecPath); 331 !!this.podspecPath && 354 if (!this.podspecPath) { 357 const podspecPath = path.join(this.path, this.podspecPath); constant [all …]
|
| H A D | CocoaPods.ts | 32 export async function readPodspecAsync(podspecPath: string): Promise<Podspec> { 33 return await spawnJSONCommandAsync('pod', ['ipc', 'spec', podspecPath]);
|
| /expo/tools/src/vendoring/ |
| H A D | IosVendoring.ts | 28 let podspecPath = path.join(sourceDirectory, podspecFile); 30 podspecPath = await config.preReadPodspecHookAsync(podspecPath); 32 const podspec = await readPodspecAsync(podspecPath);
|
| H A D | types.ts | 23 preReadPodspecHookAsync?: (podspecPath: string) => Promise<string>;
|
| /expo/tools/src/versioning/ios/ |
| H A D | versionVendoredModules.ts | 68 return vendoredPodspecPaths.reduce((result, podspecPath) => { 69 const moduleName = podspecPath.match(podspecPattern); 212 const podspecPath = (await glob('*.podspec.json', { cwd: targetDirectory, absolute: true }))[0]; 213 const podspec = await JsonFile.readAsync(podspecPath); 216 await JsonFile.writeAsync(podspecPath, podspec);
|
| H A D | versionExpoModulesProvider.ts | 51 const podspecPath = path.join( constant 78 await fs.outputJSON(podspecPath, podspec, { spaces: 2 });
|
| H A D | versionExpoModules.ts | 44 if (!pkg.podspecPath || !pkg.podspecName) { 48 const sourceDirectory = path.join(pkg.path, path.dirname(pkg.podspecPath));
|
| /expo/tools/src/dynamic-macros/ |
| H A D | IosMacrosGenerator.ts | 115 const podspecPath = path.join(expoKitPath, 'ios', 'ExpoKit.podspec'); constant 120 chalk.cyan(path.relative(EXPO_DIR, podspecPath)), 124 await IosPodsTools.renderExpoKitPodspecAsync(podspecTemplatePath, podspecPath, {
|
| /expo/tools/src/commands/ |
| H A D | IosNativeUnitTests.ts | 16 const podspec = fs.readFileSync(path.join(pkg.path, pkg.podspecPath!), 'utf8'); 33 if (!pkg.podspecName || !pkg.podspecPath || !(await pkg.hasNativeTestsAsync('ios'))) {
|
| H A D | Vendor.ts | 48 podspecPath: string; 348 podspecPath: `${destination}/RNGestureHandler.podspec.json`, 500 podspecPath: `${destination}/react-native-safe-area-context.podspec.json`, 542 const { podspecPath, output } = prebuild; constant 545 const podspec = JSON.parse(await fs.readFile(toRepoPath(podspecPath), 'utf8')) as Podspec;
|
| /expo/packages/expo-modules-autolinking/src/ |
| H A D | types.ts | 133 podspecPath?: string | string[];
|
| H A D | ExpoModuleConfig.ts | 51 return arrayize(this.rawConfig.ios?.podspecPath);
|
| /expo/packages/expo-modules-autolinking/build/ |
| H A D | types.d.ts | 109 podspecPath?: string | string[];
|
| H A D | ExpoModuleConfig.js | 48 return arrayize(this.rawConfig.ios?.podspecPath);
|
| H A D | types.js.map | 1 … multiple podspecs, string array type is also supported.\n */\n podspecPath?: string | stri…
|
| H A D | ExpoModuleConfig.js.map | 1 …iosPodspecPaths(): string[] {\n return arrayize(this.rawConfig.ios?.podspecPath);\n }\n\n /**…
|
| /expo/tools/src/vendoring/config/ |
| H A D | expoGoConfig.ts | 89 async preReadPodspecHookAsync(podspecPath: string): Promise<string> { 90 const reaUtilsPath = path.join(podspecPath, '..', 'scripts', 'reanimated_utils.rb'); 99 return podspecPath;
|
| /expo/packages/@expo/fingerprint/src/sourcer/__tests__/__snapshots__/ |
| H A D | Bare-test.ts.snap | 13 …tive-reanimated","name":"react-native-reanimated","platforms":{"ios":{"podspecPath":"../../node_mo…
|
| /expo/packages/@expo/fingerprint/e2e/__tests__/__snapshots__/ |
| H A D | managed-test.ts.snap | 185 …"contents": "{"expo":{"root":"node_modules/expo","name":"expo","platforms":{"ios":{"podspecPath":"…
|