Home
last modified time | relevance | path

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

/plugin/asciidocjs/node_modules/commander/typings/
Dindex.d.ts361 noHelp?: boolean; // old name for hidden property
/plugin/asciidocjs/node_modules/commander/
DCHANGELOG.md25 - rename `.command()` configuration `noHelp` to `hidden` (but not remove old support) ([#1232])
280 .command('action1', undefined, { noHelp: true }) // No longer valid
281 .command('action2', { noHelp: true }) // Correct
Dindex.js177 cmd._hidden = !!(opts.noHelp || opts.hidden);
241 …if (opts.noHelp || opts.hidden) cmd._hidden = true; // modifying passed command due to existing im…