@alecrust/workbox 0.4.1 → 0.4.3

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/CHANGELOG.md CHANGED
@@ -1 +1,71 @@
1
+ # Changelog
2
+
3
+ ## [unreleased]
4
+
5
+ ## [0.4.3] - 2026-05-19
6
+ ### CI
7
+ - Remove the temporary npm token fallback from release publishing
8
+ ### Documentation
9
+ - Document steady-state trusted publishing setup
10
+
11
+ ## [0.4.2] - 2026-05-19
12
+ ### Bug Fixes
13
+ - Preserve CLI binary entries in the npm package
14
+ - Publish the full changelog in the npm package tarball
15
+
1
16
  ## [0.4.1] - 2026-05-19
17
+ ### CI
18
+ - Publish npm releases with trusted publishing and provenance
19
+ ### Documentation
20
+ - Update install and release instructions for npm
21
+
22
+ ## [0.4.0] - 2026-05-08
23
+ ### Features
24
+ - Add worktree provisioning (#14)
25
+
26
+ ## [0.3.1] - 2026-05-01
27
+ ### Chore
28
+ - Remove stale config planning doc
29
+ ### Documentation
30
+ - Update install instructions
31
+ ### Features
32
+ - Add --version flag (#13)
33
+
34
+ ## [0.3.0] - 2026-05-01
35
+ ### Chore
36
+ - (deps) Update softprops/action-gh-release action to v3 (#11)
37
+ - (deps) Update dependency node to v24 (#10)
38
+ ### Features
39
+ - Add global config defaults (#12)
40
+
41
+ ## [0.2.0] - 2026-04-30
42
+ ### Bug Fixes
43
+ - (ci) Repair release workflow
44
+ - (ci) Make release workflow dispatch-safe
45
+ - (core) Initialize submodules in new worktrees (#8)
46
+ ### Chore
47
+ - (deps) Update dependency @biomejs/biome to v2.3.13 (#3)
48
+ - (deps) Update all non-major dependencies (#2)
49
+ - (deps) Update tooling and dependencies
50
+ - (deps) Update actions/setup-node action to v6 (#6)
51
+ - (deps) Update all non-major dependencies (#4)
52
+ ### Features
53
+ - (rm) Add branch deletion option (#9)
54
+
55
+ ## [0.1.0] - 2026-01-18
56
+ ### Build
57
+ - Refine CI
58
+ - Fix Lefthook config
59
+ ### Chore
60
+ - Initial scaffolding
61
+ - (deps) Update actions/checkout action to v6 (#1)
62
+ - Refactor
63
+ - Refactor
64
+ ### Documentation
65
+ - Add CI badge to README
66
+ - Improve AGENTS.md
67
+ ### Refactor
68
+ - Restructure
69
+ ### Tests
70
+ - Enable coverage
71
+ - Enforce 100% coverage thresholds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alecrust/workbox",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "Bun-first CLI for managing Git worktree sandboxes.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,8 +24,8 @@
24
24
  "CHANGELOG.md"
25
25
  ],
26
26
  "bin": {
27
- "workbox": "./src/cli.ts",
28
- "wkb": "./src/cli.ts"
27
+ "workbox": "src/cli.ts",
28
+ "wkb": "src/cli.ts"
29
29
  },
30
30
  "engines": {
31
31
  "bun": "1.3.13"
package/src/cli.ts CHANGED
File without changes