()
| 4 | import { getRepoRoot } from "./git"; |
| 5 | |
| 6 | export async function getDevCtxDir(): Promise<string> { |
| 7 | const root = await getRepoRoot(); |
| 8 | return path.join(root, ".devctx"); |
| 9 | } |
| 10 | |
| 11 | export async function isInitialized(): Promise<boolean> { |
| 12 | const dir = await getDevCtxDir(); |
no test coverage detected