()
| 204 | } |
| 205 | |
| 206 | export function hasUncommittedChanges(): boolean { |
| 207 | const out = execFileSync("git", ["status", "--porcelain"], { |
| 208 | encoding: "utf8", |
| 209 | stdio: ["ignore", "pipe", "ignore"], |
| 210 | }).trim(); |
| 211 | return out.length > 0; |
| 212 | } |
| 213 | |
| 214 | export interface ResolvedScope { |
| 215 | scope: Scope; |
no outgoing calls
no test coverage detected