claude-nomad 0.43.0 → 0.44.1
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 +40 -0
- package/README.md +2 -0
- package/dist/nomad.mjs +757 -500
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.44.1](https://github.com/funkadelic/claude-nomad/compare/v0.44.0...v0.44.1) (2026-06-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
|
|
8
|
+
* **config:** read HOME from process.env before os.homedir() ([#255](https://github.com/funkadelic/claude-nomad/issues/255)) ([2d5d679](https://github.com/funkadelic/claude-nomad/commit/2d5d67930196bd33f68de608385d4254f203f758))
|
|
9
|
+
* **output:** list per-item lines without info glyph ([#251](https://github.com/funkadelic/claude-nomad/issues/251)) ([bdbebee](https://github.com/funkadelic/claude-nomad/commit/bdbebee506d69eeffc91d609c44110f5d4f38e25))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
* **config:** resolve HOME-derived paths at call time ([#254](https://github.com/funkadelic/claude-nomad/issues/254)) ([db007fc](https://github.com/funkadelic/claude-nomad/commit/db007fceb92c435ad8c0149119691fdbdb6d9aaa))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Documentation
|
|
18
|
+
|
|
19
|
+
* mark the HOME-isolation mutation-testing limitation resolved ([#256](https://github.com/funkadelic/claude-nomad/issues/256)) ([83f462d](https://github.com/funkadelic/claude-nomad/commit/83f462d51b991f3ecc7ce853c4694163fbb0b859))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Testing
|
|
23
|
+
|
|
24
|
+
* add Stryker mutation-testing toolchain and prune zero-kill test ([#253](https://github.com/funkadelic/claude-nomad/issues/253)) ([c7339f1](https://github.com/funkadelic/claude-nomad/commit/c7339f11dd1dc28fa8fa73f744805dc0ca005855))
|
|
25
|
+
|
|
26
|
+
## [0.44.0](https://github.com/funkadelic/claude-nomad/compare/v0.43.0...v0.44.0) (2026-06-05)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Added
|
|
30
|
+
|
|
31
|
+
* **eject:** add nomad eject offboarding command ([#250](https://github.com/funkadelic/claude-nomad/issues/250)) ([9b3c69f](https://github.com/funkadelic/claude-nomad/commit/9b3c69fb47dad561dee4beaed6ed55c172a0115a))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
* **docs-site:** restore aside and GFM table rendering on .mdx pages ([#247](https://github.com/funkadelic/claude-nomad/issues/247)) ([5ccbb27](https://github.com/funkadelic/claude-nomad/commit/5ccbb27e294ccfccd46f842250a88673692894a3))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Testing
|
|
40
|
+
|
|
41
|
+
* **pull:** freeze clock in freshStrandedBranch collision test ([#249](https://github.com/funkadelic/claude-nomad/issues/249)) ([e32b444](https://github.com/funkadelic/claude-nomad/commit/e32b444ceae38868d730fb45241cde6d04faf803))
|
|
42
|
+
|
|
3
43
|
## [0.43.0](https://github.com/funkadelic/claude-nomad/compare/v0.42.0...v0.43.0) (2026-06-05)
|
|
4
44
|
|
|
5
45
|
|
package/README.md
CHANGED
|
@@ -41,6 +41,8 @@ survives different file paths and your secrets never ride along.
|
|
|
41
41
|
- **Self-healing sync.** Every overwrite is backed up first, and `nomad pull --force-remote`
|
|
42
42
|
recovers a sync repo stuck mid-rebase while parking your stranded work on a branch, refusing
|
|
43
43
|
entirely if shared config is at risk.
|
|
44
|
+
- **Easy off.** `nomad eject` replaces every managed `~/.claude/` symlink with a real copy in one
|
|
45
|
+
step, so your setup keeps working after you delete the sync checkout and uninstall the CLI.
|
|
44
46
|
|
|
45
47
|
See the [full feature tour](https://funkadelic.github.io/claude-nomad/features/) for the rest:
|
|
46
48
|
opt-in per-project sync, transcript redaction, backup pruning, and more.
|