(args: string[])
| 38 | }; |
| 39 | |
| 40 | export function buildReactDevtoolsNpmExecArgs(args: string[]): string[] { |
| 41 | return [ |
| 42 | 'exec', |
| 43 | '--yes', |
| 44 | '--package', |
| 45 | AGENT_REACT_DEVTOOLS_PACKAGE, |
| 46 | '--', |
| 47 | AGENT_REACT_DEVTOOLS_BIN, |
| 48 | ...args, |
| 49 | ]; |
| 50 | } |
| 51 | |
| 52 | function isRemoteIosBridgeBackend(leaseBackend: CliFlags['leaseBackend']): boolean { |
| 53 | return leaseBackend === 'ios-instance'; |
no outgoing calls
no test coverage detected
searching dependent graphs…