This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { execSync, spawn, SpawnOptions } from 'child_process' | |
type XCodebuildOptions = { | |
/** | |
* Build the project specified by projectname. | |
* Required if there are multiple project files in the same directory. | |
*/ | |
project: string, | |
/** |