(cwd: string)
| 251 | } |
| 252 | |
| 253 | export const dirIsInGitRepo = async (cwd: string): Promise<boolean> => { |
| 254 | return findGitRoot(cwd) !== null |
| 255 | } |
| 256 | |
| 257 | export const getHead = async (): Promise<string> => { |
| 258 | return getCachedHead() |
no outgoing calls
no test coverage detected