claude-nomad 0.50.0 → 0.50.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 +14 -0
- package/README.md +2 -0
- package/dist/nomad.mjs +6 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.50.1](https://github.com/funkadelic/claude-nomad/compare/v0.50.0...v0.50.1) (2026-06-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
|
|
8
|
+
* **doctor:** tidy summary verdict and dependency-version lines ([#289](https://github.com/funkadelic/claude-nomad/issues/289)) ([43d38a7](https://github.com/funkadelic/claude-nomad/commit/43d38a7bbf1780cd0e1e1b5e6bd85f9d75de7630))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* **hero:** plain-language status rows, drop gsd-owned files ([#291](https://github.com/funkadelic/claude-nomad/issues/291)) ([c144b0d](https://github.com/funkadelic/claude-nomad/commit/c144b0d01eea801d39b012ad3d4b3780d2ffafd1))
|
|
14
|
+
* **how-it-works:** use neutral sharedDirs example, not a gsd dir ([#292](https://github.com/funkadelic/claude-nomad/issues/292)) ([e000ecf](https://github.com/funkadelic/claude-nomad/commit/e000ecf67e814855d09c664b9dae6ce5d8287a97))
|
|
15
|
+
* **recipes:** add recipes page with example configs ([#293](https://github.com/funkadelic/claude-nomad/issues/293)) ([c339372](https://github.com/funkadelic/claude-nomad/commit/c3393723062bd9e639acff31e5236a9ff2ac2802))
|
|
16
|
+
|
|
3
17
|
## [0.50.0](https://github.com/funkadelic/claude-nomad/compare/v0.49.0...v0.50.0) (2026-06-11)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -156,6 +156,8 @@ version-staleness check and `nomad doctor --check-schema`. The CLI works without
|
|
|
156
156
|
GSD users out of the box
|
|
157
157
|
- [Setup and migration](https://funkadelic.github.io/claude-nomad/quickstart/) -- full setup
|
|
158
158
|
walkthrough, migrating an existing `~/.claude/`
|
|
159
|
+
- [Recipes](https://funkadelic.github.io/claude-nomad/recipes/) -- copy-pasteable example configs
|
|
160
|
+
for common setups, from scratch to cross-OS remapping and GSD integration
|
|
159
161
|
- [Commands reference](https://funkadelic.github.io/claude-nomad/commands/) -- all CLI flags
|
|
160
162
|
- [Claude Code plugin](https://funkadelic.github.io/claude-nomad/plugin/) -- /nomad slash commands
|
|
161
163
|
and the session-start drift check
|
package/dist/nomad.mjs
CHANGED
|
@@ -3024,7 +3024,7 @@ function reportNodeEngineCheck(section2) {
|
|
|
3024
3024
|
);
|
|
3025
3025
|
return;
|
|
3026
3026
|
}
|
|
3027
|
-
addItem(section2, `${green(okGlyph)} node: ${process.version}
|
|
3027
|
+
addItem(section2, `${green(okGlyph)} node: ${process.version}`);
|
|
3028
3028
|
}
|
|
3029
3029
|
|
|
3030
3030
|
// src/spinner.ts
|
|
@@ -3796,7 +3796,7 @@ function reportGitleaksVersionCheck(section2, run = execFileSync8, tomlExists =
|
|
|
3796
3796
|
if (pin === null) return;
|
|
3797
3797
|
const sameMajorMinor = local[0] === pin[0] && local[1] === pin[1];
|
|
3798
3798
|
if (sameMajorMinor) {
|
|
3799
|
-
addItem(section2, `${green(okGlyph)} gitleaks: ${raw}
|
|
3799
|
+
addItem(section2, `${green(okGlyph)} gitleaks: ${raw}`);
|
|
3800
3800
|
return;
|
|
3801
3801
|
}
|
|
3802
3802
|
addItem(
|
|
@@ -3967,17 +3967,14 @@ function buildVerdictSection(sections) {
|
|
|
3967
3967
|
const lines = sections.flatMap((s) => s.items).map((item2) => item2.replace(/^\t/, ""));
|
|
3968
3968
|
const failures = lines.filter(isFailLine);
|
|
3969
3969
|
const warnings = lines.filter(isWarnLine);
|
|
3970
|
-
for (const line of [...failures, ...warnings]) addItem(summary, line);
|
|
3971
3970
|
if (failures.length > 0) {
|
|
3972
|
-
addItem(
|
|
3973
|
-
summary,
|
|
3974
|
-
`${red(failGlyph)} ${failures.length} failure(s), ${warnings.length} warning(s)`
|
|
3975
|
-
);
|
|
3971
|
+
addItem(summary, red(`${failures.length} failure(s), ${warnings.length} warning(s)`));
|
|
3976
3972
|
} else if (warnings.length > 0) {
|
|
3977
|
-
addItem(summary,
|
|
3973
|
+
addItem(summary, yellow(`${warnings.length} warning(s)`));
|
|
3978
3974
|
} else {
|
|
3979
3975
|
addItem(summary, `${green(okGlyph)} healthy`);
|
|
3980
3976
|
}
|
|
3977
|
+
for (const line of [...failures, ...warnings]) addChildItem(summary, line);
|
|
3981
3978
|
return summary;
|
|
3982
3979
|
}
|
|
3983
3980
|
|
|
@@ -6353,7 +6350,7 @@ function parsePushArgs(argv) {
|
|
|
6353
6350
|
// package.json
|
|
6354
6351
|
var package_default = {
|
|
6355
6352
|
name: "claude-nomad",
|
|
6356
|
-
version: "0.50.
|
|
6353
|
+
version: "0.50.1",
|
|
6357
6354
|
type: "module",
|
|
6358
6355
|
description: "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
|
|
6359
6356
|
keywords: [
|
package/package.json
CHANGED