(appDir: string, platform: string)
| 65 | `; |
| 66 | |
| 67 | export async function installPlatform(appDir: string, platform: string): Promise<void> { |
| 68 | const platformPath = resolve(cwd, '..', platform); |
| 69 | await runCommand('npm', ['install', platformPath], { cwd: appDir }); |
| 70 | } |
| 71 | |
| 72 | export async function makeAppDir(monoRepoLike = false): Promise<void> { |
| 73 | const appDirObj: any = await mktmp(); |
no test coverage detected