bonzai-burn 1.0.61 → 1.0.63

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/bburn.js CHANGED
@@ -50,7 +50,7 @@ async function main() {
50
50
  // Copy to clipboard
51
51
  try {
52
52
  execSync('pbcopy', { input: output });
53
- console.log('issues copied to clipboard - run claude to install\n');
53
+ console.log('Issues copied to clipboard. Run "claude" to implement.\n');
54
54
  } catch {
55
55
  console.log('Copy the above and give to Claude.\n');
56
56
  }
package/dist/index.js CHANGED
@@ -496,7 +496,7 @@ async function main() {
496
496
  `);
497
497
  try {
498
498
  execSync("pbcopy", { input: output });
499
- console.log("issues copied to clipboard - run claude to install\n");
499
+ console.log('Issues copied to clipboard. Run "claude" to implement.\n');
500
500
  } catch {
501
501
  console.log("Copy the above and give to Claude.\n");
502
502
  }
@@ -869,7 +869,10 @@ function init() {
869
869
  copyFileSync(join(TEMPLATE_DIR2, "config.json"), join(bonzaiPath, "config.json"));
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
- console.log(`Run 'npx bonzai-burn -b' to analyze your codebase`);
872
+ console.log("");
873
+ console.log(" --------------------------------------------------------");
874
+ console.log("| Run npx bonzai-burn -b to find tech debt in codebase |");
875
+ console.log(" --------------------------------------------------------");
873
876
  }
874
877
  async function main4() {
875
878
  const args = process.argv.slice(2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-burn",
3
- "version": "1.0.61",
3
+ "version": "1.0.63",
4
4
  "description": "Git branch-based cleanup tool with bburn, baccept, and brevert commands",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",