bonzai-burn 1.0.51 → 1.0.53

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/README.md CHANGED
@@ -2,26 +2,3 @@
2
2
 
3
3
  Code analysis CLI for Claude Code.
4
4
 
5
- ## Install
6
-
7
- ```bash
8
- npx bonzai-burn
9
- ```
10
-
11
- ## Usage
12
-
13
- ```bash
14
- npx bonzai-burn # Initialize bonzai/ folder
15
- npx bonzai-burn -b # Run code analysis
16
- npx bonzai-burn -h # Install Claude Code hook
17
- npx bonzai-burn -h -s # Check hook status
18
- npx bonzai-burn -h -u # Uninstall hook
19
- ```
20
-
21
- ## Config
22
-
23
- Edit `bonzai/config.json` to customize burn rules.
24
-
25
- ---
26
-
27
- > **Note:** Release configuration (loops, channels) is managed outside this repo. See internal docs.
package/dist/index.js CHANGED
@@ -20,11 +20,11 @@ var init_loops_config = __esm({
20
20
  "src/loops.config.js"() {
21
21
  CHANNELS = {
22
22
  dev: ["burn", "visualization", "backend"],
23
- beta: ["burn", "visualization"],
24
- stable: ["burn", "visualization"]
23
+ staging: ["burn", "visualization"],
24
+ prod: ["burn", "visualization"]
25
25
  };
26
- channel = "stable";
27
- ENABLED_LOOPS = CHANNELS[channel];
26
+ channel = "prod";
27
+ ENABLED_LOOPS = CHANNELS[channel] || CHANNELS.prod;
28
28
  }
29
29
  });
30
30
  function commandExists(cmd) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonzai-burn",
3
- "version": "1.0.51",
3
+ "version": "1.0.53",
4
4
  "description": "Git branch-based cleanup tool with bburn, baccept, and brevert commands",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,8 +11,8 @@
11
11
  },
12
12
  "scripts": {
13
13
  "dev": "RELEASE_CHANNEL=dev node src/index.js",
14
- "build": "RELEASE_CHANNEL=stable tsup",
15
- "build:beta": "RELEASE_CHANNEL=beta tsup",
14
+ "build": "RELEASE_CHANNEL=prod tsup",
15
+ "build:beta": "RELEASE_CHANNEL=staging tsup",
16
16
  "build:dev": "RELEASE_CHANNEL=dev tsup",
17
17
  "prepublishOnly": "npm run build",
18
18
  "release": "npm version patch && npm publish",