(ref: string)
| 66 | |
| 67 | |
| 68 | function hasLocalRef(ref: string) { |
| 69 | try { run(`git show-ref --verify --quiet ${ref}`); return true; } catch { return false; } |
| 70 | } |
| 71 | |
| 72 | const REPO_ROOT = run("git rev-parse --show-toplevel", { cwd: currentDocsWorkspace }); |
| 73 |
no test coverage detected
searching dependent graphs…