(args: string[])
| 189 | } |
| 190 | |
| 191 | function git(args: string[]) { |
| 192 | return execFileSync("git", args, { |
| 193 | cwd: ROOT, |
| 194 | encoding: "utf-8", |
| 195 | }).trim(); |
| 196 | } |
| 197 | |
| 198 | function tagExists(tag: string) { |
| 199 | try { |
no outgoing calls
no test coverage detected