diff --git a/packages/cli/src/commands/index.ts b/packages/cli/src/commands/index.ts index db88c57fb1..f773f279fc 100644 --- a/packages/cli/src/commands/index.ts +++ b/packages/cli/src/commands/index.ts @@ -47,6 +47,7 @@ export function registerCommands(program: CommanderStatic) { program .command('backend:__experimental__bundle__', { hidden: true }) .description('Bundle all backend packages into dist-workspace') + .option('--build', 'Build packages before packing them into the image') .action(lazy(() => import('./backend/bundle').then(m => m.default))); program