feat(updates): added update-ide to update command

This commit is contained in:
jb
2026-04-17 15:01:12 -03:00
parent e3a6837052
commit b5304ae5b3
3 changed files with 76 additions and 71 deletions
-2
View File
@@ -7,7 +7,6 @@ var pkg = require('../package.json');
var initCmd = require('../src/commands/init');
var updateCmd = require('../src/commands/update');
var docsCmd = require('../src/commands/docs');
var updateIdeCmd = require('../src/commands/update-ide');
var program = new Command();
@@ -19,6 +18,5 @@ program
initCmd.register(program);
updateCmd.register(program);
docsCmd.register(program);
updateIdeCmd.register(program);
program.parse(process.argv);