( projectPath: string, selectedPath: string )
| 99 | } |
| 100 | |
| 101 | export function toProjectRootDirectory( |
| 102 | projectPath: string, |
| 103 | selectedPath: string |
| 104 | ): string | null { |
| 105 | const rootDirectory = normalizePath(relative(projectPath, selectedPath)); |
| 106 | return rootDirectory === '' ? null : rootDirectory; |
| 107 | } |
| 108 | |
| 109 | export async function promptForInferredServicesSetup({ |
| 110 | client, |
no test coverage detected