Searched refs:noHelp (Results 1 – 3 of 3) sorted by relevance
361 noHelp?: boolean; // old name for hidden property
25 - rename `.command()` configuration `noHelp` to `hidden` (but not remove old support) ([#1232])280 .command('action1', undefined, { noHelp: true }) // No longer valid281 .command('action2', { noHelp: true }) // Correct
177 cmd._hidden = !!(opts.noHelp || opts.hidden);241 …if (opts.noHelp || opts.hidden) cmd._hidden = true; // modifying passed command due to existing im…