(args)
| 38 | } |
| 39 | |
| 40 | async execWorkspaces (args) { |
| 41 | if (args && args.length) { |
| 42 | return this.exec(args) |
| 43 | } |
| 44 | await this.setWorkspaces() |
| 45 | return this.exec(this.workspacePaths) |
| 46 | } |
| 47 | |
| 48 | // given a manifest, try to get the hosted git info from it based on repository (if a string) or repository.url (if an object) |
| 49 | // returns null if it's not a valid repo, or not a known hosted repo |
nothing calls this directly
no test coverage detected