Define a GetDotenv CLI plugin with compositional helpers.
const p = definePlugin({ ns: 'aws', setup(cli) { /* wire subcommands */ } }) .use(child, { ns: 'whoami' }); Copy
const p = definePlugin({ ns: 'aws', setup(cli) { /* wire subcommands */ } }) .use(child, { ns: 'whoami' });
Define a GetDotenv CLI plugin with compositional helpers.