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

Function printBasicHelp

lib/models/blueprint.js:1336–1352  ·  view source on GitHub ↗
(verbose)

Source from the content-addressed store, hash-verified

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();

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…