(projectPath: string)
| 65 | } |
| 66 | |
| 67 | async function resolvePathIfPresent(projectPath: string) { |
| 68 | try { |
| 69 | return await realpath(projectPath) |
| 70 | } catch { |
| 71 | return path.resolve(projectPath) |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | async function directoryExists(directoryPath: string) { |
| 76 | try { |
no outgoing calls
no test coverage detected