claude-nomad 0.43.0 → 0.44.0
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 +17 -0
- package/README.md +2 -0
- package/dist/nomad.mjs +513 -319
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.44.0](https://github.com/funkadelic/claude-nomad/compare/v0.43.0...v0.44.0) (2026-06-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Added
|
|
7
|
+
|
|
8
|
+
* **eject:** add nomad eject offboarding command ([#250](https://github.com/funkadelic/claude-nomad/issues/250)) ([9b3c69f](https://github.com/funkadelic/claude-nomad/commit/9b3c69fb47dad561dee4beaed6ed55c172a0115a))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
* **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))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Testing
|
|
17
|
+
|
|
18
|
+
* **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))
|
|
19
|
+
|
|
3
20
|
## [0.43.0](https://github.com/funkadelic/claude-nomad/compare/v0.42.0...v0.43.0) (2026-06-05)
|
|
4
21
|
|
|
5
22
|
|
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.
|