(
public currentName: string,
public refName: string
)
| 12 | |
| 13 | class ForbiddenPackageRefError extends Error { |
| 14 | constructor( |
| 15 | public currentName: string, |
| 16 | public refName: string |
| 17 | ) { |
| 18 | super( |
| 19 | `Public package cannot reference private package. Found '${refName}' in dependencies of '${currentName}'` |
| 20 | ); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | export class Workspace { |
nothing calls this directly
no outgoing calls
no test coverage detected