bonzai-burn 1.0.24 → 1.0.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-burn",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "description": "Git branch-based cleanup tool with bburn, baccept, and brevert commands",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -20,7 +20,8 @@
20
20
  },
21
21
  "files": [
22
22
  "src",
23
- "payload-bonzai"
23
+ "payload-bonzai",
24
+ "graph-templates"
24
25
  ],
25
26
  "dependencies": {
26
27
  "@modelcontextprotocol/sdk": "^1.25.3"
package/src/bgraph.js CHANGED
@@ -8,7 +8,7 @@ const __filename = fileURLToPath(import.meta.url);
8
8
  const __dirname = path.dirname(__filename);
9
9
 
10
10
  // Template folder in the package
11
- const TEMPLATE_DIR = path.join(__dirname, '..', 'payload-bonzai', 'graph-templates');
11
+ const TEMPLATE_DIR = path.join(__dirname, '..', 'graph-templates');
12
12
 
13
13
  // Helper function to recursively copy directory
14
14
  function copyDirectory(src, dest) {