(args)
| 60 | } |
| 61 | |
| 62 | async execWorkspaces (args) { |
| 63 | switch (args.length) { |
| 64 | case 0: |
| 65 | return this.listWorkspaces() |
| 66 | case 1: |
| 67 | return this.changeWorkspaces(args) |
| 68 | default: |
| 69 | throw this.usageError() |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | async change (args) { |
| 74 | const libnpmversion = require('libnpmversion') |
nothing calls this directly
no test coverage detected