( input: PrepareMetroRuntimeOptions, env: EnvSource, cwd: string, )
| 662 | } |
| 663 | |
| 664 | function resolveMetroRuntimeFilePath( |
| 665 | input: PrepareMetroRuntimeOptions, |
| 666 | env: EnvSource, |
| 667 | cwd: string, |
| 668 | ): string | null { |
| 669 | return input.runtimeFilePath ? resolvePath(input.runtimeFilePath, env, cwd) : null; |
| 670 | } |
| 671 | |
| 672 | function resolveMetroLogPath( |
| 673 | input: PrepareMetroRuntimeOptions, |
no test coverage detected