From beaa4e636c96f78e8275108debbae4ece733dca7 Mon Sep 17 00:00:00 2001 From: martmull Date: Tue, 9 Jun 2026 15:17:00 +0200 Subject: [PATCH] Remove default command (#21357) fix conflict with not existing commands --- packages/twenty-sdk/src/cli/commands/dev/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/twenty-sdk/src/cli/commands/dev/index.ts b/packages/twenty-sdk/src/cli/commands/dev/index.ts index 9fd9144ac10..b618398267f 100644 --- a/packages/twenty-sdk/src/cli/commands/dev/index.ts +++ b/packages/twenty-sdk/src/cli/commands/dev/index.ts @@ -55,8 +55,8 @@ export const registerDevCommands = (program: Command): void => { }; program - .command('dev [appPath]', { isDefault: true }) - .description('Build and sync local changes (default command)') + .command('dev [appPath]') + .description('Build and sync local changes') .option( '-o, --once', 'Build and sync once, then exit (useful for CI, scripts, and pre-commit hooks)',