Lines Matching full:command
14 - support for multiple command aliases, the first of which is shown in the auto-generated help ([#5…
25 - rename `.command()` configuration `noHelp` to `hidden` (but not remove old support) ([#1232])
36 * `.addCommand()` for adding a separately configured command ([#764] [#1149])
37 * allow a non-executable to be set as the default command ([#742] [#1149])
38 * implicit help command when there are subcommands (previously only if executables) ([#1149])
39 * customise implicit help command with `.addHelpCommand()` ([#1149])
47 * suggest help option along with unknown command error ([#1179])
48 * TypeScript definition for `commands` property of `Command` ([#1184])
55 * do not emit `command:*` for executable subcommands ([#809] [#1149])
58 * only add implicit help command when it will not conflict with other uses of argument ([#1153] [#1…
59 * implicit help command works with command aliases ([#948] [#1149])
64 * *Breaking* `.args` contains command arguments with just recognised options removed ([#1032] [#113…
65 * *Breaking* display error if required argument for command is missing ([#995] [#1149])
68 * unknown options included in arguments passed to command action handler
74 * *Breaking* `.on('command:*', callback)` and other command events passed (changed) results from `.…
76 * refactor Command from prototype to class ([#1159])
81 …nt return types changed to be more subclass friendly, return `this` rather than `Command` ([#1180])
87 * removed EventEmitter from TypeScript definition for Command, eliminating implicit peer dependency…
93 If you use `.on('command:*')` or more complicated tests to detect an unrecognised subcommand, you m…
97 If you use `.command('*')` to add a default command, you may be be able to switch to `isDefault:tru…
129 * two routines to change how option values are handled, and eliminate name clashes with command pro…
170 * *Breaking* keep command object out of program.args when action handler called ([#1048])
173 * this changes parameters to `command:*` event to include unknown arguments
240 * e.g. `.command('clone', 'clone description', { executableFile: 'myClone' })`
241 * Change docs for `.command` to contrast action handler vs git-style executable. ([#938] [#990])
242 * **Breaking** Change TypeScript to use overloaded function for `.command`. ([#938] [#990])
250 * Add parent command as prefix of subcommand in help ([#980])
275 When using TypeScript, adding a command does not allow an explicit `undefined` for an unwanted exec…
276 for a command with an action handler).
280 .command('action1', undefined, { noHelp: true }) // No longer valid
281 .command('action2', { noHelp: true }) // Correct