(commandName)
| 58 | } |
| 59 | |
| 60 | _lookupCommand(commandName) { |
| 61 | let Command = this.commands[stringUtils.classify(commandName)] || lookupCommand(this.commands, commandName); |
| 62 | |
| 63 | return new Command({ |
| 64 | ui: this.ui, |
| 65 | project: this.project, |
| 66 | commands: this.commands, |
| 67 | tasks: this.tasks, |
| 68 | }); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | module.exports = JsonGenerator; |
no outgoing calls
no test coverage detected