(args: string[], index: number)
| 17 | const repoRoot = path.resolve(import.meta.dir, ".."); |
| 18 | |
| 19 | function readArgValue(args: string[], index: number) { |
| 20 | const value = args[index + 1]; |
| 21 | if (!value) { |
| 22 | throw new Error(`Missing value for ${args[index]}`); |
| 23 | } |
| 24 | return value; |
| 25 | } |
| 26 | |
| 27 | /** Parse release benchmark CLI options while preserving explicit output paths. */ |
| 28 | export async function parseRunReleaseBenchmarkArgs( |
no outgoing calls
no test coverage detected