inngest-setup-redwoodjs
Version:
Setup Inngest in RedwoodJS
14 lines (13 loc) • 379 B
JavaScript
export const description = 'Set up Inngest plugin';
export const builder = (yargs) => {
return yargs.option('force', {
alias: 'f',
default: false,
description: 'Overwrite existing files',
type: 'boolean',
});
};
export const handler = async (options) => {
const { handler } = await import('./handler');
return handler(options);
};