feat(update): update cli command

This commit is contained in:
jb
2026-04-17 14:49:58 -03:00
parent 017d6d2d5b
commit 992cb0e7dd
3 changed files with 67 additions and 5 deletions
+2
View File
@@ -9,6 +9,7 @@ var updateRepoCmd = require('../src/commands/update-repo');
var updateBaseCmd = require('../src/commands/update-base');
var docsCmd = require('../src/commands/docs');
var updateIdeCmd = require('../src/commands/update-ide');
var updateCliCmd = require('../src/commands/update-cli');
var program = new Command();
@@ -22,5 +23,6 @@ updateRepoCmd.register(program);
updateBaseCmd.register(program);
docsCmd.register(program);
updateIdeCmd.register(program);
updateCliCmd.register(program);
program.parse(process.argv);