Get all packages that depend on the given package
(pkgName: string)
| 38 | |
| 39 | /** Get all packages that depend on the given package */ |
| 40 | getDependents(pkgName: string): DependentInfo[] { |
| 41 | return this.dependents.get(pkgName) || []; |
| 42 | } |
| 43 | |
| 44 | /** Check if a package is an internal workspace package */ |
| 45 | isInternal(pkgName: string): boolean { |
no outgoing calls
no test coverage detected