UNPKG

@schemifyjs/cli

Version:
11 lines (10 loc) 351 B
import { createUpgradeCommand } from './upgrade.factory.js'; export function registerUpgradeCommand(program) { program .command('upgrade') .description('Check for CLI updates and suggest upgrade instructions') .action(async () => { const command = createUpgradeCommand(); await command.execute(); }); }