bonzai-burn 1.0.71 → 1.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -854,7 +854,7 @@ Options:
|
|
|
854
854
|
-h, --hook Manage Claude Code stop hook
|
|
855
855
|
--help Show this help message`;
|
|
856
856
|
if (ENABLED_LOOPS.includes("visualization") || ENABLED_LOOPS.includes("backend")) {
|
|
857
|
-
help = help.replace("--help", "-
|
|
857
|
+
help = help.replace("--help", "-g, --graph Launch visualization server\n --help");
|
|
858
858
|
}
|
|
859
859
|
console.log(help);
|
|
860
860
|
}
|
|
@@ -870,10 +870,9 @@ function init() {
|
|
|
870
870
|
console.log(`Created ${BONZAI_DIR3}/ folder with config.json`);
|
|
871
871
|
console.log(`Edit ${BONZAI_DIR3}/config.json to configure your burn rules`);
|
|
872
872
|
console.log("");
|
|
873
|
-
console.log(" \u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\
|
|
874
|
-
console.log(" \u2502 npx bonzai-burn -
|
|
875
|
-
console.log(" \
|
|
876
|
-
console.log(" \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518");
|
|
873
|
+
console.log(" \u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510");
|
|
874
|
+
console.log(" \u2502 npx bonzai-burn -g Launch dependency graph \u2502");
|
|
875
|
+
console.log(" \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518");
|
|
877
876
|
}
|
|
878
877
|
async function main4() {
|
|
879
878
|
const args = process.argv.slice(2);
|
|
@@ -889,7 +888,7 @@ async function main4() {
|
|
|
889
888
|
}
|
|
890
889
|
}
|
|
891
890
|
if (ENABLED_LOOPS.includes("visualization") || ENABLED_LOOPS.includes("backend")) {
|
|
892
|
-
if (flag === "-
|
|
891
|
+
if (flag === "-g" || flag === "--graph") {
|
|
893
892
|
const { main: configMain } = await Promise.resolve().then(() => (init_bconfig(), bconfig_exports));
|
|
894
893
|
return configMain == null ? void 0 : configMain();
|
|
895
894
|
}
|