()
| 101 | } |
| 102 | |
| 103 | async function runSetupCommand(): Promise<void> { |
| 104 | const { registerSetupCommand } = await import('./cli/commands/setup.ts'); |
| 105 | const app = await buildLightweightYargsApp(); |
| 106 | registerSetupCommand(app); |
| 107 | await app.parseAsync(); |
| 108 | } |
| 109 | |
| 110 | async function runUpgradeCommand(): Promise<void> { |
| 111 | const { registerUpgradeCommand } = await import('./cli/commands/upgrade.ts'); |
no test coverage detected