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 +3 -2
- package/src/bgraph.js +1 -1
- /package/{payload-bonzai/graph-templates → graph-templates}/config.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/delete.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/git.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/index.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/list.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/open-cursor.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/read.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/scan_code_quality.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/shutdown.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/terminal.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/handlers/write.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/ignore.txt +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/receiver.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/utils/fileList.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/utils/ignore.js +0 -0
- /package/{payload-bonzai/graph-templates → graph-templates}/utils/parsers.js +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bonzai-burn",
|
|
3
|
-
"version": "1.0.
|
|
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, '..', '
|
|
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) {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|