(args)
| 64 | } |
| 65 | |
| 66 | async execWorkspaces (args) { |
| 67 | await this.setWorkspaces() |
| 68 | for (const workspacePath of this.workspacePaths) { |
| 69 | this.top = workspacePath |
| 70 | this.prefix = workspacePath |
| 71 | await this.exec(args) |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | // get the package name from the packument at `path` |
| 76 | // throws if no packument is present OR if it does not have `name` attribute |
nothing calls this directly
no test coverage detected