feat(cli): add toolchain management command

This commit is contained in:
2026-05-10 11:04:57 +00:00
parent a420157287
commit f421c5851d
7 changed files with 578 additions and 0 deletions
+8
View File
@@ -137,6 +137,14 @@ export let run = async () => {
modHelpers.run(argvArg);
});
/**
* manage the global @git.zone toolchain
*/
gitzoneSmartcli.addCommand("tools").subscribe(async (argvArg) => {
const modTools = await import("./mod_tools/index.js");
await modTools.run(argvArg);
});
/**
* manage release configuration
*/