Twenty sdk follow up (#16290)

as title
This commit is contained in:
martmull
2025-12-03 16:50:16 +01:00
committed by GitHub
parent a829ae62e2
commit 267bfcadf8
7 changed files with 11 additions and 26 deletions
+1 -6
View File
@@ -1,15 +1,10 @@
#!/usr/bin/env node
import chalk from 'chalk';
import { Command, CommanderError } from 'commander';
import { readFileSync } from 'fs';
import { join } from 'path';
import { AppCommand } from './commands/app.command';
import { AuthCommand } from './commands/auth.command';
import { ConfigService } from './services/config.service';
const packageJson = JSON.parse(
readFileSync(join(__dirname, '../package.json'), 'utf-8'),
);
import packageJson from '../../package.json';
const program = new Command();