(flags: CliFlags)
| 571 | } |
| 572 | |
| 573 | export function hasDeferredMetroConfig(flags: CliFlags): boolean { |
| 574 | const metroKind = flags.metroKind; |
| 575 | return Boolean( |
| 576 | flags.metroPublicBaseUrl || flags.metroProxyBaseUrl || flags.metroProjectRoot || metroKind, |
| 577 | ); |
| 578 | } |
| 579 | |
| 580 | function isRuntimeCompatibleWithPlatform( |
| 581 | runtime: SessionRuntimeHints, |
no outgoing calls
no test coverage detected