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