claude-nomad 0.57.1 → 0.58.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 +7 -0
- package/dist/nomad.mjs +17 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.58.0](https://github.com/funkadelic/claude-nomad/compare/v0.57.1...v0.58.0) (2026-07-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Added
|
|
7
|
+
|
|
8
|
+
* **preview:** render an Extras section in pull/diff dry-run previews ([#394](https://github.com/funkadelic/claude-nomad/issues/394)) ([6b929dc](https://github.com/funkadelic/claude-nomad/commit/6b929dc7c63aad905ba267f793b31308fa7cb76e))
|
|
9
|
+
|
|
3
10
|
## [0.57.1](https://github.com/funkadelic/claude-nomad/compare/v0.57.0...v0.57.1) (2026-07-08)
|
|
4
11
|
|
|
5
12
|
|
package/dist/nomad.mjs
CHANGED
|
@@ -6350,9 +6350,23 @@ function computePreview(ts, map, verb = "pull") {
|
|
|
6350
6350
|
if (localOnly > 0) {
|
|
6351
6351
|
addItem(sessions, `${localOnly} local-only present, not in repo (push to reconcile)`);
|
|
6352
6352
|
}
|
|
6353
|
+
const extras = section("Extras");
|
|
6354
|
+
let extrasSkipped = 0;
|
|
6355
|
+
let extrasUnmapped = 0;
|
|
6356
|
+
if (existsSync38(join45(repo, "path-map.json")) && existsSync38(join45(repo, "shared", "extras"))) {
|
|
6357
|
+
const extrasResult = remapExtrasPull(ts, { dryRun: true });
|
|
6358
|
+
for (const entry of extrasResult.wouldPull) {
|
|
6359
|
+
addItem(extras, entry);
|
|
6360
|
+
}
|
|
6361
|
+
extrasSkipped = extrasResult.skipped;
|
|
6362
|
+
extrasUnmapped = extrasResult.unmapped;
|
|
6363
|
+
}
|
|
6353
6364
|
const summary = section("Summary");
|
|
6354
|
-
addItem(
|
|
6355
|
-
|
|
6365
|
+
addItem(
|
|
6366
|
+
summary,
|
|
6367
|
+
summaryRow(verb, remapResult.unmapped + extrasUnmapped, 0, extrasSkipped, localOnly)
|
|
6368
|
+
);
|
|
6369
|
+
renderTree([links, settingsSection, sessions, extras, summary]);
|
|
6356
6370
|
return { unmapped: remapResult.unmapped, collisions: 0, localOnly };
|
|
6357
6371
|
}
|
|
6358
6372
|
|
|
@@ -7854,7 +7868,7 @@ function parseSyncArgs(argv) {
|
|
|
7854
7868
|
// package.json
|
|
7855
7869
|
var package_default = {
|
|
7856
7870
|
name: "claude-nomad",
|
|
7857
|
-
version: "0.
|
|
7871
|
+
version: "0.58.0",
|
|
7858
7872
|
type: "module",
|
|
7859
7873
|
description: "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
|
|
7860
7874
|
keywords: [
|
package/package.json
CHANGED