(args: string[])
| 1 | import * as cp from "node:child_process"; |
| 2 | |
| 3 | function execGit(args: string[]): string { |
| 4 | return cp |
| 5 | .execFileSync("git", args, { stdio: "pipe", encoding: "utf-8" }) |
| 6 | .trim(); |
| 7 | } |
| 8 | |
| 9 | function parseVersionFromPackageJson(content: string): string | null { |
| 10 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…