| /expo/tools/src/versioning/ios/ |
| H A D | versionExpoModules.ts | 112 if (!podspec) { 115 if (podspec.name) { 116 podspec.name = `${prefix}${podspec.name}`; 118 if (podspec.header_dir) { 119 podspec.header_dir = `${prefix}${podspec.header_dir}`; 121 if (podspec.dependencies) { 126 podspec.dependencies[newKey] = podspec.dependencies[key]; 130 if (podspec.public_header_files) { 131 podspec.public_header_files = transformVersionedFiles(podspec.public_header_files, prefix); 143 mutator?.(podspec); [all …]
|
| H A D | versionVendoredModules.ts | 92 find: /([^/]+\.podspec\.json)$\b/, 213 const podspec = await JsonFile.readAsync(podspecPath); 215 delete podspec?.['ios']?.['vendored_frameworks']; 216 await JsonFile.writeAsync(podspecPath, podspec);
|
| H A D | versionExpoModulesProvider.ts | 55 const podspec = { constant 78 await fs.outputJSON(podspecPath, podspec, { spaces: 2 });
|
| H A D | types.ts | 6 mutatePodspec?: (podspec: Podspec) => void;
|
| /expo/tools/src/prebuilds/ |
| H A D | XcodeGen.ts | 55 podspec: Podspec, 58 const platforms = Object.keys(podspec.platforms); 64 const dependenciesNames = podspec.dependencies ? Object.keys(podspec.dependencies) : []; 73 name: podspec.name, 75 [podspec.name]: { 81 name: podspec.name, 86 `${podspec.name}.spec.json`, 90 ...arrayize(podspec.exclude_files), 92 compilerFlags: podspec.compiler_flags, 111 CFBundleName: podspec.name, [all …]
|
| H A D | Prebuilder.ts | 164 const podspec = await pkg.getPodspecAsync(); constant 166 if (!podspec) { 173 podspec, 182 podspec: Podspec, 185 const spec = await createSpecFromPodspecAsync(podspec, async (dependencyName) => {
|
| /expo/tools/src/vendoring/ |
| H A D | IosVendoring.ts | 32 const podspec = await readPodspecAsync(podspecPath); constant 35 const filesPatterns = createFilesPatterns(podspec); 46 await config.mutatePodspec?.(podspec, sourceDirectory, targetDirectory); 51 await fs.outputJSON(path.join(targetDirectory, podspecJsonFile), podspec, { 83 function createFilesPatterns(podspec: Podspec): string[] { 85 podspec.source_files, 86 podspec.ios?.source_files ?? [], 87 podspec.preserve_paths ?? [] 90 const subspecs = podspec.subspecs ?? []; 91 const podspecDefaultSubspecsArray = podspec.default_subspecs [all …]
|
| /expo/tools/src/versioning/ios/transforms/ |
| H A D | expoModulesTransforms.ts | 187 mutatePodspec(podspec: Podspec) { 189 addDependency(podspec, podspec.name.replace(prefix, '')); 196 function removeScriptPhasesAndResourceBundles(podspec: Podspec): void { 198 delete podspec['script_phases']; 199 delete podspec['resource_bundles']; 202 function addDependency(podspec: Podspec, dependencyName: string) { 203 if (!podspec.dependencies) { 204 podspec.dependencies = {}; 206 podspec.dependencies[dependencyName] = [];
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/ |
| H A D | process-podspecs.sh | 52 POD_NAME=$(basename "$SPEC_NAME" .podspec) 66 local SPEC_NAME=(*.podspec) 72 push Folly.podspec 73 push DoubleConversion.podspec 74 push glog.podspec
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/ |
| H A D | process-podspecs.sh | 52 POD_NAME=$(basename "$SPEC_NAME" .podspec) 66 local SPEC_NAME=(*.podspec) 72 push Folly.podspec 73 push DoubleConversion.podspec 74 push glog.podspec
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/ |
| H A D | podSpy.rb | 29 def pod(name, version = nil, path: nil, configurations: nil, modular_headers: nil, podspec: nil) 36 if podspec != nil then params[:podspec] = podspec end
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/ |
| H A D | podSpy.rb | 29 def pod(name, version = nil, path: nil, configurations: nil, modular_headers: nil, podspec: nil) 36 if podspec != nil then params[:podspec] = podspec end
|
| /expo/tools/src/vendoring/config/ |
| H A D | expoGoConfig.ts | 27 async mutatePodspec(podspec: Podspec) { 28 if (!podspec.pod_target_xcconfig) { 29 podspec.pod_target_xcconfig = {}; 31 podspec.pod_target_xcconfig['HEADER_SEARCH_PATHS'] = 101 async mutatePodspec(podspec: Podspec) { 107 podspec.xcconfig['HEADER_SEARCH_PATHS'] = podspec.xcconfig[ 402 async mutatePodspec(podspec: Podspec, sourceDirectory: string, targetDirectory: string) { 406 const vendoredFrameworks = podspec.ios?.vendored_frameworks ?? []; 431 if (!podspec.pod_target_xcconfig) { 432 podspec.pod_target_xcconfig = {}; [all …]
|
| /expo/template-files/ios/ |
| H A D | ExpoKit-Podfile-versioned | 3 # Disable expo-updates auto create manifest in podspec script_phase 13 pod 'JKBigInteger', :podspec => '../../../ios/vendored/common/JKBigInteger.podspec.json' 16 use_pods!('../../../ios/vendored/unversioned/**/*.podspec.json', nil, excluded_pods)
|
| H A D | ExpoKit-Podfile | 3 # Disable expo-updates auto create manifest in podspec script_phase 37 …od 'JKBigInteger', :modular_headers => true, :podspec => '../../../ios/vendored/common/JKBigIntege… 47 use_pods!('../../../ios/vendored/unversioned/**/*.podspec.json', nil, excluded_pods) 86 # Can't specify this in the React podspec because we need to use those podspecs for detached
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/cocoapods/__tests__/test_utils/ |
| H A D | podSpy.rb | 29 def pod(name, version = nil, path: nil, configurations: nil, modular_headers: nil, podspec: nil, ta… 36 if podspec != nil then params[:podspec] = podspec end
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/cocoapods/__tests__/ |
| H A D | fabric-test.rb | 45 def check_pod(name, path: nil, modular_headers: nil, podspec: nil) 51 if podspec != nil then expected_params[:podspec] = podspec end
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/cocoapods/__tests__/ |
| H A D | fabric-test.rb | 38 def check_pod(name, path: nil, modular_headers: nil, podspec: nil) 44 if podspec != nil then expected_params[:podspec] = podspec end
|
| H A D | codegen_utils-test.rb | 90 podspec = CodegenUtils.new().get_react_codegen_spec( 97 assert_equal(podspec, get_podspec_no_fabric_no_script()) 106 podspec = CodegenUtils.new().get_react_codegen_spec( 113 assert_equal(podspec, get_podspec_fabric_and_script_phases("echo Test Script Phase"))
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/scripts/cocoapods/__tests__/ |
| H A D | fabric-test.rb | 58 def check_pod(name, path: nil, modular_headers: nil, podspec: nil) 64 if podspec != nil then expected_params[:podspec] = podspec end
|
| H A D | codegen_utils-test.rb | 98 podspec = CodegenUtils.new().get_react_codegen_spec( 107 assert_equal(podspec, get_podspec_no_fabric_no_script()) 116 podspec = CodegenUtils.new().get_react_codegen_spec( 125 assert_equal(podspec, get_podspec_fabric_and_script_phases("echo Test Script Phase")) 135 podspec = CodegenUtils.new().get_react_codegen_spec( 144 assert_equal(podspec, get_podspec_when_use_frameworks())
|
| /expo/packages/expo-modules-autolinking/scripts/ios/cocoapods/ |
| H A D | sandbox.rb | 25 define_method(:store_podspec) do |name, podspec, _external_source, json| 26 spec = _original_store_podspec.bind(self).(name, podspec, _external_source, json) 50 spec_json = JSON.parse(podspec.to_pretty_json)
|
| /expo/packages/expo-modules-autolinking/scripts/ios/ |
| H A D | autolinking_manager.rb | 53 podspec = get_podspec_for_pod(pod) 54 use_modular_headers_for_dependencies(podspec.all_dependencies) 63 podspec = podspec || get_podspec_for_pod(pod) 64 test_specs_names = podspec.test_specs.map { |test_spec| 65 test_spec.name.delete_prefix(podspec.name + "/")
|
| /expo/tools/src/vendoring/devmenu/steps/ |
| H A D | GenerateJsonFromPodspec.ts | 33 const podspec = await readPodspecAsync(path.join(workDirectory, this.from)); constant 34 const transformedPodspec = await this.transform(podspec);
|
| /expo/tools/src/commands/ |
| H A D | Vendor.ts | 341 …transform: async (podspec) => ({...podspec, name: 'DevMenuRNGestureHandler', platforms: {'ios': aw… 493 …transform: async (podspec) => ({...podspec, name: 'dev-menu-react-native-safe-area-context', platf… 545 const podspec = JSON.parse(await fs.readFile(toRepoPath(podspecPath), 'utf8')) as Podspec; constant 547 podspec,
|