claude-nomad 0.38.1 → 0.39.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 +12 -0
- package/dist/nomad.mjs +14 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.39.0](https://github.com/funkadelic/claude-nomad/compare/v0.38.1...v0.39.0) (2026-06-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Added
|
|
7
|
+
|
|
8
|
+
* **doctor:** group version checks into Nomad + Dependency sections ([#228](https://github.com/funkadelic/claude-nomad/issues/228)) ([08e8bf7](https://github.com/funkadelic/claude-nomad/commit/08e8bf79a730f1e7f025a1c2ad9dd406f586b05e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* **how-it-works:** render repo-layout trees with FileTree ([#229](https://github.com/funkadelic/claude-nomad/issues/229)) ([b52de15](https://github.com/funkadelic/claude-nomad/commit/b52de152416ac5dabb650a1970b53a3b45262396))
|
|
14
|
+
|
|
3
15
|
## [0.38.1](https://github.com/funkadelic/claude-nomad/compare/v0.38.0...v0.38.1) (2026-06-02)
|
|
4
16
|
|
|
5
17
|
|
package/dist/nomad.mjs
CHANGED
|
@@ -2342,7 +2342,7 @@ init_color();
|
|
|
2342
2342
|
import { execFileSync as execFileSync8 } from "node:child_process";
|
|
2343
2343
|
var VERSION_TOKEN = /(\d{1,9}\.\d{1,9}\.\d{1,9})/;
|
|
2344
2344
|
var PROBE_TIMEOUT_MS = 3e3;
|
|
2345
|
-
var
|
|
2345
|
+
var FETCHER_BASE = "HTTP fetcher";
|
|
2346
2346
|
function parseFirstVersion(line) {
|
|
2347
2347
|
const m = VERSION_TOKEN.exec(line);
|
|
2348
2348
|
return m ? m[1] : null;
|
|
@@ -2366,13 +2366,13 @@ function reportFetcherRow(section2, run) {
|
|
|
2366
2366
|
const curl = probeOptionalDep("curl", run);
|
|
2367
2367
|
const wget = probeOptionalDep("wget", run);
|
|
2368
2368
|
if (curl.status === "present") {
|
|
2369
|
-
addItem(section2, `${green(okGlyph)} ${
|
|
2369
|
+
addItem(section2, `${green(okGlyph)} ${FETCHER_BASE}: curl ${curl.version ?? "(present)"}`);
|
|
2370
2370
|
} else if (wget.status === "present") {
|
|
2371
|
-
addItem(section2, `${green(okGlyph)} ${
|
|
2371
|
+
addItem(section2, `${green(okGlyph)} ${FETCHER_BASE}: wget ${wget.version ?? "(present)"}`);
|
|
2372
2372
|
} else {
|
|
2373
2373
|
addItem(
|
|
2374
2374
|
section2,
|
|
2375
|
-
`${yellow(warnGlyph)} ${
|
|
2375
|
+
`${yellow(warnGlyph)} ${FETCHER_BASE} (curl or wget): not installed (optional; needed for release-version staleness check + nomad doctor --check-schema)`
|
|
2376
2376
|
);
|
|
2377
2377
|
}
|
|
2378
2378
|
}
|
|
@@ -2513,18 +2513,20 @@ function cmdDoctor(opts = {}) {
|
|
|
2513
2513
|
reportRemote(repository);
|
|
2514
2514
|
reportRebaseClean(repository);
|
|
2515
2515
|
reportActionsDrift(repository);
|
|
2516
|
-
const
|
|
2517
|
-
reportVersionCheck(
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2516
|
+
const nomadVersion = section("Nomad Version");
|
|
2517
|
+
reportVersionCheck(nomadVersion);
|
|
2518
|
+
reportBackupsCheck(nomadVersion);
|
|
2519
|
+
const depVersions = section("Dependency Versions");
|
|
2520
|
+
reportNodeEngineCheck(depVersions);
|
|
2521
|
+
reportGitleaksVersionCheck(depVersions);
|
|
2522
|
+
reportOptionalDeps(depVersions);
|
|
2522
2523
|
const sharedScan = section("Shared scan");
|
|
2523
2524
|
if (opts.checkShared === true) reportCheckShared(sharedScan, gitleaksReady);
|
|
2524
2525
|
const schemaScan = section("Schema scan");
|
|
2525
2526
|
if (opts.checkSchema === true) reportCheckSchema(schemaScan);
|
|
2526
2527
|
renderDoctor([
|
|
2527
|
-
|
|
2528
|
+
nomadVersion,
|
|
2529
|
+
depVersions,
|
|
2528
2530
|
host,
|
|
2529
2531
|
links,
|
|
2530
2532
|
hooksScan,
|
|
@@ -4728,7 +4730,7 @@ function parsePushArgs(argv) {
|
|
|
4728
4730
|
// package.json
|
|
4729
4731
|
var package_default = {
|
|
4730
4732
|
name: "claude-nomad",
|
|
4731
|
-
version: "0.
|
|
4733
|
+
version: "0.39.0",
|
|
4732
4734
|
type: "module",
|
|
4733
4735
|
description: "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
|
|
4734
4736
|
keywords: [
|
package/package.json
CHANGED