1. Fix scrollbar Before https://github.com/user-attachments/assets/29792a71-b2dd-49f6-bb90-9d15feeb95aa After https://github.com/user-attachments/assets/939a000a-b787-4ea5-a9f0-61fbac886025 2. Introduce verbose vs non-verbose verbose = what we have today (very detailed) non-verbose = summarized (with a log to say add --verbose for full logs!) without --verbose <img width="1256" height="876" alt="updated_non_verbose" src="https://github.com/user-attachments/assets/d6194c41-2366-4297-a7ac-b3f3b27e08dd" /> with --verbose <img width="422" height="819" alt="verbose_logs" src="https://github.com/user-attachments/assets/409e2e88-ec3d-4bab-957c-ef319895f8c5" />
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
#!/usr/bin/env node
|
|
import { registerCommands } from '@/cli/commands/app-command';
|
|
import { ConfigService } from '@/cli/utilities/config/config-service';
|
|
import chalk from 'chalk';
|
|
import { Command, CommanderError } from 'commander';
|
|
import { inspect } from 'util';
|
|
import packageJson from '../../package.json';
|
|
|
|
inspect.defaultOptions.depth = 10;
|
|
|
|
const program = new Command();
|
|
|
|
program
|
|
.name('twenty')
|
|
.description('CLI for Twenty application development')
|
|
.version(packageJson.version);
|
|
|
|
program.option(
|
|
'-r, --remote <name>',
|
|
'Use a specific remote (overrides the default set by remote switch)',
|
|
);
|
|
|
|
program.hook('preAction', async (thisCommand) => {
|
|
const opts = (thisCommand as any).optsWithGlobals
|
|
? (thisCommand as any).optsWithGlobals()
|
|
: thisCommand.opts();
|
|
|
|
let remote = opts.remote;
|
|
if (!remote) {
|
|
const configService = new ConfigService();
|
|
remote = await configService.getDefaultRemote();
|
|
} else {
|
|
console.log(chalk.gray(`Using remote: ${remote}`));
|
|
}
|
|
|
|
ConfigService.setActiveRemote(remote);
|
|
});
|
|
|
|
registerCommands(program);
|
|
|
|
program.exitOverride();
|
|
|
|
try {
|
|
program.parse();
|
|
} catch (error) {
|
|
if (error instanceof CommanderError) {
|
|
process.exit(error.exitCode);
|
|
}
|
|
if (error instanceof Error) {
|
|
console.error(chalk.red('Error:'), error.message);
|
|
process.exit(1);
|
|
}
|
|
}
|