(cwd: string)
| 121 | // ── path helpers ────────────────────────────────────────────────────────────── |
| 122 | |
| 123 | export function artifactsRoot(cwd: string): string { |
| 124 | return path.join(cwd, '.qodex', 'artifacts'); |
| 125 | } |
| 126 | function artifactDir(cwd: string, id: string): string { |
| 127 | return path.join(artifactsRoot(cwd), id); |
| 128 | } |
no outgoing calls
no test coverage detected