()
| 45 | } |
| 46 | |
| 47 | export function invalidateProjectCache(): void { |
| 48 | globalThis.__piProjectCache?.clear(); |
| 49 | } |
| 50 | |
| 51 | async function git(cwd: string, args: string[]): Promise<string> { |
| 52 | const { stdout } = await execFileAsync("git", ["-C", cwd, ...args], { |
no outgoing calls
no test coverage detected