()
| 133 | } |
| 134 | |
| 135 | export function resolveHead(): string { |
| 136 | return execFileSync("git", ["rev-parse", "HEAD"], { |
| 137 | encoding: "utf8", |
| 138 | stdio: ["ignore", "pipe", "ignore"], |
| 139 | }).trim(); |
| 140 | } |
| 141 | |
| 142 | export function getRawDiff(args: string[]): string { |
| 143 | return execFileSync( |
no outgoing calls
no test coverage detected