Remove verbose option (#14646)

as title
This commit is contained in:
martmull
2025-09-22 15:19:57 +02:00
committed by GitHub
parent d6e4bcb533
commit f76e9df3cd
5 changed files with 15 additions and 48 deletions
+5 -7
View File
@@ -13,13 +13,11 @@ program
.description('CLI for Twenty application development')
.version('0.1.0');
program
.option('-v, --verbose', 'Enable verbose logging')
.option(
'--api-url <url>',
'Twenty API URL',
process.env.TWENTY_API_URL || 'http://localhost:3000',
);
program.option(
'--api-url <url>',
'Twenty API URL',
process.env.TWENTY_API_URL || 'http://localhost:3000',
);
program.addCommand(new AuthCommand().getCommand());
program.addCommand(new AppCommand().getCommand());