@mvanhorn/printing-press-library 0.1.14 → 0.1.15
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 +5 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.15
|
|
4
|
+
|
|
5
|
+
- Add a version-lifecycle guard for npm releases: `preversion` now checks that `package-lock.json` is in sync before the bump, and `version` refreshes/checks the lockfile after `package.json` changes so future release commits cannot accidentally leave the lockfile version stale.
|
|
6
|
+
- Make the installer shadow-warning JSON test hermetic by explicitly stubbing `realpath` in the stale-binary case.
|
|
7
|
+
|
|
3
8
|
## 0.1.14
|
|
4
9
|
|
|
5
10
|
- Treat "installed but not on PATH" as a warning instead of aborting `install`. `go install` can succeed while the current agent or gateway process cannot discover `$GOPATH/bin`; the installer now prints the platform-specific PATH fix, continues installing the focused `pp-*` skill, and reports a successful install with a `pathWarning: "not_on_path"` field in JSON output. This avoids half-installed agent setups where the binary exists but the matching skill was skipped.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mvanhorn/printing-press-library",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Installer and catalog CLI for Printing Press-generated CLIs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"check-lock-version": "node scripts/check-lock-version.mjs",
|
|
46
46
|
"clean": "rm -rf dist",
|
|
47
47
|
"preversion": "npm run check-lock-version",
|
|
48
|
+
"version": "npm install --package-lock-only && npm run check-lock-version",
|
|
48
49
|
"test": "npm run build && node --test \"dist/tests/**/*.test.js\"",
|
|
49
50
|
"prepublishOnly": "npm test && npm run build"
|
|
50
51
|
},
|