(platformName: string)
| 102 | } |
| 103 | |
| 104 | function printNextSteps(platformName: string) { |
| 105 | logSuccess(`${c.strong(platformName)} platform added!`); |
| 106 | output.write( |
| 107 | `Follow the Developer Workflow guide to get building:\n${c.strong( |
| 108 | `https://capacitorjs.com/docs/basics/workflow`, |
| 109 | )}\n`, |
| 110 | ); |
| 111 | } |
| 112 | |
| 113 | async function getAddChecks(config: Config, platformName: string): Promise<CheckFunction[]> { |
| 114 | if (platformName === config.ios.name) { |
no test coverage detected