feat(docs): new command vitruvio docs for viewing vitruvio ui docs on browser

This commit is contained in:
jb
2026-04-14 16:12:18 -03:00
parent c5621bcb49
commit bd8b410c62
2 changed files with 14 additions and 0 deletions
+2
View File
@@ -7,6 +7,7 @@ var pkg = require('../package.json');
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 program = new Command();
@@ -18,5 +19,6 @@ program
initCmd.register(program);
updateRepoCmd.register(program);
updateBaseCmd.register(program);
docsCmd.register(program);
program.parse(process.argv);