Remove default command (#21357)

fix conflict with not existing commands
This commit is contained in:
martmull
2026-06-09 15:17:00 +02:00
committed by GitHub
parent e9086b49f6
commit beaa4e636c

View File

@@ -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)',