()
| 94 | } |
| 95 | |
| 96 | async function runInitCommand(): Promise<void> { |
| 97 | const { registerInitCommand } = await import('./cli/commands/init.ts'); |
| 98 | const app = await buildLightweightYargsApp(); |
| 99 | registerInitCommand(app, { workspaceRoot: process.cwd() }); |
| 100 | await app.parseAsync(); |
| 101 | } |
| 102 | |
| 103 | async function runSetupCommand(): Promise<void> { |
| 104 | const { registerSetupCommand } = await import('./cli/commands/setup.ts'); |
no test coverage detected