MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / printBasicHelp

Function printBasicHelp

lib/models/command.js:622–635  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…