( input: PrepareMetroRuntimeOptions, env: EnvSource, cwd: string, projectRoot: string, )
| 670 | } |
| 671 | |
| 672 | function resolveMetroLogPath( |
| 673 | input: PrepareMetroRuntimeOptions, |
| 674 | env: EnvSource, |
| 675 | cwd: string, |
| 676 | projectRoot: string, |
| 677 | ): string { |
| 678 | return resolvePath( |
| 679 | input.logPath ?? path.join(projectRoot, '.agent-device', 'metro.log'), |
| 680 | env, |
| 681 | cwd, |
| 682 | ); |
| 683 | } |
| 684 | |
| 685 | function resolveMetroPrepareSettings( |
| 686 | input: PrepareMetroRuntimeOptions, |
no test coverage detected