(commandOptions)
| 89 | }, |
| 90 | |
| 91 | _printJsonHelp(commandOptions) { |
| 92 | let generator = new JsonGenerator({ |
| 93 | ui: this.ui, |
| 94 | project: this.project, |
| 95 | commands: this.commands, |
| 96 | tasks: this.tasks, |
| 97 | }); |
| 98 | |
| 99 | let json = generator.generate(commandOptions); |
| 100 | |
| 101 | let outputJsonString = JSON.stringify(json, null, 2); |
| 102 | |
| 103 | this.ui.writeLine(outputJsonString); |
| 104 | }, |
| 105 | |
| 106 | _printHelpForCommand(commandName, detailed, options) { |
| 107 | let command = this._resolveCommand(commandName); |
nothing calls this directly
no test coverage detected
searching dependent graphs…