Define a GetDotenv CLI plugin with compositional helpers.
const parent = definePlugin({ id: 'p', setup(cli) { /* ... */ } }) .use(childA) .use(childB); Copy
const parent = definePlugin({ id: 'p', setup(cli) { /* ... */ } }) .use(childA) .use(childB);
Define a GetDotenv CLI plugin with compositional helpers.