(dir: string)
| 50 | export type BridgePointer = z.infer<ReturnType<typeof BridgePointerSchema>> |
| 51 | |
| 52 | export function getBridgePointerPath(dir: string): string { |
| 53 | return join(getProjectsDir(), sanitizePath(dir), 'bridge-pointer.json') |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Write the pointer. Also used to refresh mtime during long sessions — |
no test coverage detected