( srcBaseDir: string, projectPath: string )
| 53 | } |
| 54 | |
| 55 | export function buildLegacyRemoteProjectLayout( |
| 56 | srcBaseDir: string, |
| 57 | projectPath: string |
| 58 | ): RemoteProjectLayout { |
| 59 | return buildRemoteProjectLayout( |
| 60 | srcBaseDir, |
| 61 | projectPath, |
| 62 | path.posix.join(srcBaseDir, getProjectName(projectPath)) |
| 63 | ); |
| 64 | } |
| 65 | |
| 66 | export function getRemoteWorkspacePath(layout: RemoteProjectLayout, workspaceName: string): string { |
| 67 | return path.posix.join(layout.projectRoot, workspaceName); |
no test coverage detected