(verbose)
| 1334 | _printCommand: printCommand, |
| 1335 | |
| 1336 | printBasicHelp(verbose) { |
| 1337 | let initialMargin = ' '; |
| 1338 | let output = initialMargin; |
| 1339 | if (this.overridden) { |
| 1340 | output += chalk.grey(`(overridden) ${this.name}`); |
| 1341 | } else { |
| 1342 | output += this.name; |
| 1343 | |
| 1344 | output += this._printCommand(initialMargin, true); |
| 1345 | |
| 1346 | if (verbose) { |
| 1347 | output += EOL + this.printDetailedHelp(this.availableOptions); |
| 1348 | } |
| 1349 | } |
| 1350 | |
| 1351 | return output; |
| 1352 | }, |
| 1353 | |
| 1354 | printDetailedHelp() { |
| 1355 | let markdownColor = new MarkdownColor(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…