(remoteConfigPath: string)
| 611 | } |
| 612 | |
| 613 | function buildDeferredRuntimeNotice(remoteConfigPath: string): RuntimePreparationNotice { |
| 614 | const nextStep = `agent-device metro prepare --remote-config ${remoteConfigPath}`; |
| 615 | return { |
| 616 | status: 'deferred', |
| 617 | nextStep, |
| 618 | message: |
| 619 | `Metro runtime is not prepared yet; it will be prepared automatically on first open, ` + |
| 620 | `or run "${nextStep}" to inspect it before launch.`, |
| 621 | }; |
| 622 | } |
| 623 | |
| 624 | function remoteConfigHasMetroSettings(remoteConfigPath: string): boolean { |
| 625 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…