()
| 21 | }); |
| 22 | |
| 23 | async execute() { |
| 24 | const name = await this.getPackage(); |
| 25 | const args = []; |
| 26 | |
| 27 | if (this.deps) { |
| 28 | args.push('--deps'); |
| 29 | } |
| 30 | |
| 31 | args.push(name, 'dev'); |
| 32 | |
| 33 | await this.cli.run(args); |
| 34 | } |
| 35 | } |
nothing calls this directly
no test coverage detected