@mvanhorn/printing-press-library 0.1.16 → 0.1.17
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 +4 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.17
|
|
4
|
+
|
|
5
|
+
- Raise the documented direct `go install` floor to Go 1.26.4 so npm installer guidance matches the catalog-wide module enforcement floor.
|
|
6
|
+
|
|
3
7
|
## 0.1.16
|
|
4
8
|
|
|
5
9
|
- Default `install` to a per-user binary directory (`$HOME/.local/bin` on macOS/Linux, `%LOCALAPPDATA%\Programs\PrintingPress\bin` on Windows) instead of Go's `$GOPATH/bin`, so humans, agents, and gateway processes converge on the same install location.
|
package/README.md
CHANGED
|
@@ -140,7 +140,7 @@ More bundles will be added over time. To suggest one, open an issue at the [prin
|
|
|
140
140
|
## Requirements
|
|
141
141
|
|
|
142
142
|
- Node.js 20+
|
|
143
|
-
- Go 1.26.
|
|
143
|
+
- Go 1.26.4 or newer (for `go install`)
|
|
144
144
|
- The installer writes CLI binaries to a per-user binary directory by default: `$HOME/.local/bin` on macOS/Linux and `%LOCALAPPDATA%\Programs\PrintingPress\bin` on Windows. That directory must be on the runtime `PATH` for installed CLIs to be runnable by name. If it is missing, `install` still installs the focused skill, then prints the exact, copy-pasteable line to add for your platform and shell (zsh/bash/fish, PowerShell, cmd, or Git Bash).
|
|
145
145
|
|
|
146
146
|
Use `--bin-dir <dir>` only when you want to override the default user bin directory. The installer creates the directory first, sets `GOBIN=<dir>` for the install, and reports the resulting binary path:
|