(config: Config)
| 86 | } |
| 87 | |
| 88 | export async function removeCocoapodsFiles(config: Config): Promise<void> { |
| 89 | const iosDirectory = config.ios.nativeProjectDirAbs; |
| 90 | const podFile = resolve(iosDirectory, 'Podfile'); |
| 91 | const podlockFile = resolve(iosDirectory, 'Podfile.lock'); |
| 92 | const xcworkspaceFile = resolve(iosDirectory, 'App.xcworkspace'); |
| 93 | |
| 94 | await remove(podFile); |
| 95 | await remove(podlockFile); |
| 96 | await remove(xcworkspaceFile); |
| 97 | } |
| 98 | |
| 99 | export async function generatePackageText(config: Config, plugins: Plugin[]): Promise<string> { |
| 100 | const iosPlatformVersion = await getCapacitorPackageVersion(config, config.ios.name); |
no test coverage detected