@lordierclaw/bluenote 0.4.3 → 0.4.5
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/README.md +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -192,9 +192,9 @@ node dist/bin.js version
|
|
|
192
192
|
node dist/bin.js doctor
|
|
193
193
|
```
|
|
194
194
|
|
|
195
|
-
`npm run version:status` checks the four sibling package names and versions
|
|
195
|
+
`npm run version:status` checks the four sibling package names and versions and rejects unsupported `@lordierclaw/bluenote-core` dependency specs. `latest` and exact published semver are both acceptable release-mode dependency shapes; development mode may use pinned Git deps when you intentionally pass `--allow-git-deps` for a local-only workspace.
|
|
196
196
|
|
|
197
|
-
The distribution repo also owns the release gate for `@lordierclaw/bluenote`: the tag
|
|
197
|
+
The distribution repo also owns the release gate for `@lordierclaw/bluenote`: publishing a GitHub Release for the matching `v*` tag triggers the workflow, which runs the repo checks and a fresh Docker `node:22-bookworm` install/smoke pass before npm publish is allowed to continue.
|
|
198
198
|
|
|
199
199
|
## Packaging and versions
|
|
200
200
|
|
|
@@ -202,7 +202,7 @@ The package name is `@lordierclaw/bluenote`; published binaries are `bluenote` a
|
|
|
202
202
|
|
|
203
203
|
The distribution depends on `@lordierclaw/bluenote-core` for headless behavior. Optional clients are installed separately and discovered as `bluenote-webui` and `bluenote-term` executables on `PATH`.
|
|
204
204
|
|
|
205
|
-
|
|
205
|
+
The distribution package consumes the latest published `@lordierclaw/bluenote-core` by default instead of requiring a same-version coordinated release. For local development workspaces that intentionally opt into Git-pinned dependencies, keep using `npm run version:status -- --allow-git-deps`.
|
|
206
206
|
|
|
207
207
|
## Cross-platform notes
|
|
208
208
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lordierclaw/bluenote",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"description": "Official BlueNote distribution CLI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"check": "npm run typecheck && npm run test && npm run build"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@lordierclaw/bluenote-core": "
|
|
32
|
+
"@lordierclaw/bluenote-core": "latest"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "16.18.126",
|