Prints basic help for the command. Basic help looks like this: ember generate Generates new code from blueprints aliases: g --dry-run (Default: false) --verbose (Default: false) The default implementation is designed
()
| 620 | @method printBasicHelp |
| 621 | */ |
| 622 | printBasicHelp() { |
| 623 | // ember command-name |
| 624 | let output; |
| 625 | if (this.isRoot) { |
| 626 | output = `Usage: ${this.name}`; |
| 627 | } else { |
| 628 | output = `ember ${this.name}`; |
| 629 | } |
| 630 | |
| 631 | output += this._printCommand(); |
| 632 | output += EOL; |
| 633 | |
| 634 | return output; |
| 635 | }, |
| 636 | |
| 637 | /** |
| 638 | Prints detailed help for the command. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…