feat(ide): ide configs for vs code in vitruvio update-ide

This commit is contained in:
jb
2026-04-14 18:23:36 -03:00
parent 56b362a44a
commit 65472cdb98
2 changed files with 193 additions and 0 deletions
+2
View File
@@ -8,6 +8,7 @@ var initCmd = require('../src/commands/init');
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 program = new Command();
@@ -20,5 +21,6 @@ initCmd.register(program);
updateRepoCmd.register(program);
updateBaseCmd.register(program);
docsCmd.register(program);
updateIdeCmd.register(program);
program.parse(process.argv);