(config: Config)
| 15 | import { isInstalled, runCommand } from '../util/subprocess'; |
| 16 | |
| 17 | export async function checkIOSPackage(config: Config): Promise<string | null> { |
| 18 | return checkCapacitorPlatform(config, 'ios'); |
| 19 | } |
| 20 | |
| 21 | function execBundler() { |
| 22 | try { |
no test coverage detected