(projectPath: string)
| 27 | } |
| 28 | |
| 29 | export function createRemoteProjectId(projectPath: string): string { |
| 30 | const normalizedPath = projectPath.replace(/\\/g, "/"); |
| 31 | const projectSlug = sanitizeProjectSegment(getProjectName(projectPath)); |
| 32 | return `${projectSlug}-${hashText(normalizedPath)}`; |
| 33 | } |
| 34 | |
| 35 | export function buildRemoteProjectLayout( |
| 36 | srcBaseDir: string, |
no test coverage detected