(rawPath: string)
| 74 | } |
| 75 | |
| 76 | function resolveExistingPath(rawPath: string): string { |
| 77 | const resolved = path.resolve(rawPath); |
| 78 | try { |
| 79 | return fs.realpathSync.native(resolved); |
| 80 | } catch { |
| 81 | return resolved; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | function findGitWorktreeRoot(startDir: string): string | undefined { |
| 86 | let current = startDir; |
no outgoing calls
no test coverage detected
searching dependent graphs…