(cwd: string)
| 16 | } |
| 17 | |
| 18 | function resolveWorkspaceDerivedDataRoot(cwd: string): string { |
| 19 | const workspaceKey = getRuntimeInstanceIfConfigured()?.workspaceKey ?? workspaceKeyForRoot(cwd); |
| 20 | return getWorkspaceFilesystemLayout(workspaceKey).derivedData; |
| 21 | } |
| 22 | |
| 23 | export function computeScopedDerivedDataPath(anchorPath: string, cwd?: string): string { |
| 24 | const resolvedCwd = cwd ?? process.cwd(); |
no test coverage detected