claude-nomad 0.17.0 → 0.17.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 +7 -0
- package/package.json +1 -1
- package/src/commands.update.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.17.1](https://github.com/funkadelic/claude-nomad/compare/v0.17.0...v0.17.1) (2026-05-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
|
|
8
|
+
* **update:** explain y/N in push-merge prompt ([#90](https://github.com/funkadelic/claude-nomad/issues/90)) ([ab53960](https://github.com/funkadelic/claude-nomad/commit/ab5396041210f3770b34121c9875b38580ffc903))
|
|
9
|
+
|
|
3
10
|
## [0.17.0](https://github.com/funkadelic/claude-nomad/compare/v0.16.1...v0.17.0) (2026-05-21)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/src/commands.update.ts
CHANGED
|
@@ -204,7 +204,9 @@ function runFork(opts: CmdUpdateOpts): void {
|
|
|
204
204
|
gitOrFatal(['push', 'origin', 'main'], 'git push origin main', REPO_HOME);
|
|
205
205
|
return;
|
|
206
206
|
}
|
|
207
|
-
const answer = promptFn(
|
|
207
|
+
const answer = promptFn(
|
|
208
|
+
'Push merge to origin/main? (y publishes to your private mirror so other hosts see it; N keeps it local) [y/N] ',
|
|
209
|
+
).toLowerCase();
|
|
208
210
|
if (answer === 'y' || answer === 'yes') {
|
|
209
211
|
gitOrFatal(['push', 'origin', 'main'], 'git push origin main', REPO_HOME);
|
|
210
212
|
} else {
|