()
| 108 | } |
| 109 | |
| 110 | async function runUpgradeCommand(): Promise<void> { |
| 111 | const { registerUpgradeCommand } = await import('./cli/commands/upgrade.ts'); |
| 112 | const app = await buildLightweightYargsApp(); |
| 113 | registerUpgradeCommand(app); |
| 114 | await app.parseAsync(); |
| 115 | } |
| 116 | |
| 117 | async function main(): Promise<void> { |
| 118 | const cliBootstrapStartedAt = Date.now(); |
no test coverage detected