(cwd, args, options = {})
| 13 | } |
| 14 | |
| 15 | function gitChecked(cwd, args, options = {}) { |
| 16 | return runCommandChecked("git", args, { cwd, ...options }); |
| 17 | } |
| 18 | |
| 19 | function listUniqueFiles(...groups) { |
| 20 | return [...new Set(groups.flat().filter(Boolean))].sort(); |
no test coverage detected