@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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. 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. npm run version:status is the release check and requires exact published version dependencies for BlueNote packages. Development mode may use pinned Git deps when you intentionally pass `--allow-git-deps` for a local-only workspace.
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-driven release workflow runs the repo checks, verifies package metadata, and performs a fresh Docker `node:22-bookworm` install/smoke pass before npm publish and GitHub release creation are allowed to continue.
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
- Release mode must use published version deps for BlueNote packages. The distribution package now pins `@lordierclaw/bluenote-core` to the exact published semver used by the coordinated BlueNote release, while `--allow-git-deps` remains available only for local development workspaces that intentionally opt into Git-pinned dependencies.
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",
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": "0.4.3"
32
+ "@lordierclaw/bluenote-core": "latest"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "16.18.126",