()
| 136 | } |
| 137 | |
| 138 | #getWorkspacesEdges () { |
| 139 | if (this.npm.global) { |
| 140 | return |
| 141 | } |
| 142 | |
| 143 | for (const edge of this.#tree.edgesOut.values()) { |
| 144 | if (edge?.to?.target?.isWorkspace) { |
| 145 | this.#getEdgesOut(edge.to.target) |
| 146 | } |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | async #getPackument (spec) { |
| 151 | return pacote.packument(spec, { |
no test coverage detected