bonzai-burn 1.0.37 → 1.0.38

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/package.json +1 -1
  2. package/src/index.js +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-burn",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "description": "Git branch-based cleanup tool with bburn, baccept, and brevert commands",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -52,11 +52,11 @@ function init() {
52
52
  console.log(`📝 Edit ${BONZAI_DIR}/config.json to configure your burn rules`);
53
53
  console.log(`🔥 Run 'npx bonzai-burn -b' to analyze your codebase`);
54
54
  console.log('');
55
- console.log('┌─────────────────────────────────────────────────────────────┐');
56
- console.log('│ │');
57
- console.log('│ 🌳 Run `npx bonzai-burn -c` to visualize your codebase │');
58
- console.log('│ │');
59
- console.log('└─────────────────────────────────────────────────────────────┘');
55
+ console.log('┌─────────────────────────────────────────────────────────────────────┐');
56
+ console.log('│ │');
57
+ console.log('│ 🌳 Run `npx bonzai-burn -c` to configure your cleanup settings │');
58
+ console.log('│ │');
59
+ console.log('└─────────────────────────────────────────────────────────────────────┘');
60
60
  }
61
61
 
62
62
  async function main() {