Home
last modified time | relevance | path

Searched refs:subcommand (Results 1 – 3 of 3) sorted by relevance

/plugin/asciidocjs/node_modules/commander/
DReadme.md307 You can use `.addCommand()` to add an already configured subcommand to the program.
333 …output. Specifying `true` for `opts.isDefault` will run the subcommand if no other subcommand is s…
420 …tory of the entry script (like `./examples/pm`) with the name `program-subcommand`, like `pm-insta…
459 …by default if your command has subcommands. It can be used alone, or with a subcommand name to show
460 further help for the subcommand. These are effectively the same if the `shell` program has implicit…
643 … method of the Command object, and creates a new command rather than a subcommand. This gets used …
645 customise the new subcommand (examples using [subclass](./examples/custom-command-class.js) and [fu…
652 …ny examples/pm publish`. The `--harmony` option will be preserved when spawning subcommand process.
656 An executable subcommand is launched as a separate child process.
659 the inspector port is incremented by 1 for the spawned subcommand.
[all …]
DCHANGELOG.md40 * display error message for unknown subcommand, by default ([#432] [#1088] [#1149])
41 * display help for missing subcommand, by default ([#1088] [#1149])
80 * add tips to missing subcommand executable
93 If you use `.on('command:*')` or more complicated tests to detect an unrecognised subcommand, you m…
95 If you use `program.args` or more complicated tests to detect a missing subcommand, you may be able…
165 * call default subcommand even when there are unknown options ([#1047])
250 * Add parent command as prefix of subcommand in help ([#980])
Dindex.js754 _executeSubCommand(subcommand, args) { argument
774 let bin = path.basename(scriptPath, path.extname(scriptPath)) + '-' + subcommand._name;
775 if (subcommand._executableFile) {
776 bin = subcommand._executableFile;
835 …- if '${subcommand._name}' is not meant to be an executable command, remove description parameter …