Create a namespace-only parent plugin (a group command) for composing plugins under a shared prefix.
This is a convenience wrapper around definePlugin that performs no action by default and exists only for command organization.
The host option bag type.
Group plugin options.
A plugin instance that can .use(...) child plugins.
.use(...)
program.use( groupPlugins({ ns: 'getdotenv', description: 'getdotenv utility functions', aliases: ['gd'], }).use(initPlugin()),); Copy
program.use( groupPlugins({ ns: 'getdotenv', description: 'getdotenv utility functions', aliases: ['gd'], }).use(initPlugin()),);
Create a namespace-only parent plugin (a group command) for composing plugins under a shared prefix.
This is a convenience wrapper around definePlugin that performs no action by default and exists only for command organization.