(cwd: string)
| 51 | * written here. |
| 52 | */ |
| 53 | export function resolveProjectDir(cwd: string): string { |
| 54 | return path.join(cwd, ".orb") |
| 55 | } |
| 56 | |
| 57 | function linksFilePath(cwd: string): string { |
| 58 | return path.join(resolveProjectDir(cwd), "links.json") |
no outgoing calls
no test coverage detected