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.
Files changed (2) hide show
  1. package/dist/index.js +5 -6
  2. 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", "-c, --config Launch visualization server\n --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\u2500\u2500\u2510");
874
- console.log(" \u2502 npx bonzai-burn -c Configure burn rules \u2502");
875
- console.log(" \u2502 npx bonzai-burn -b Find tech debt in codebase \u2502");
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 === "-c" || flag === "--config") {
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-burn",
3
- "version": "1.0.71",
3
+ "version": "1.0.73",
4
4
  "description": "Git branch-based cleanup tool with bburn, baccept, and brevert commands",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",