(args: string[])
| 10 | const sources = genSources() |
| 11 | |
| 12 | function git(args: string[]) { |
| 13 | return execFileSync("git", args, { |
| 14 | cwd: projectDir, |
| 15 | encoding: "utf8", |
| 16 | stdio: ["ignore", "pipe", "ignore"], |
| 17 | }).trim() |
| 18 | } |
| 19 | |
| 20 | function tagExists(tag: string) { |
| 21 | try { |
no outgoing calls
no test coverage detected