From 2f9ee534a2e44a87b37005fddf7be64169b16409 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Thu, 3 Dec 2020 12:00:06 +0100 Subject: [PATCH] cli: add missing --build flag to experimental bundle command --- packages/cli/src/commands/index.ts | 1 + 1 file changed, 1 insertion(+) 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