cli: add missing --build flag to experimental bundle command

This commit is contained in:
Patrik Oldsberg
2020-12-03 12:00:06 +01:00
parent c9cb716d92
commit 2f9ee534a2
+1
View File
@@ -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