@wordbricks/velen 0.2.43-darwin-arm64 → 0.2.44-darwin-arm64

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 CHANGED
@@ -74,8 +74,19 @@ Install:
74
74
  - `npx @wordbricks/velen --help`
75
75
  - `velen update` updates the globally installed Velen binary and Velen CLI agent skill.
76
76
  - `velen skill add` installs or updates the Velen CLI agent skill globally.
77
- - Linux npm installs ship musl-linked binaries so the CLI runs on both glibc and musl-based distributions, including Alpine.
78
- - Windows npm installs ship both x64 and arm64 platform binaries.
77
+
78
+ Official npm release targets:
79
+
80
+ | Platform | Node architecture | Rust target | npm optional dependency alias |
81
+ | --- | --- | --- | --- |
82
+ | macOS | `arm64` | `aarch64-apple-darwin` | `velen-darwin-arm64` |
83
+ | Linux | `x64` | `x86_64-unknown-linux-musl` | `velen-linux-x64` |
84
+ | Linux | `arm64` | `aarch64-unknown-linux-musl` | `velen-linux-arm64` |
85
+
86
+ - Linux npm installs use musl-linked targets so the same platform
87
+ packages run on glibc distributions and musl distributions such as Alpine.
88
+ - Other platform and architecture pairs are not included in the official npm
89
+ release and the launcher reports them as unsupported.
79
90
 
80
91
  Release:
81
92
 
@@ -85,5 +96,9 @@ Release:
85
96
  - After the release is tagged, close or delete that temporary release branch/PR so `origin/main` stays at `0.0.0`.
86
97
  - Configure npm trusted publishing for `@wordbricks/velen` with GitHub Actions using the workflow filename `cli-release.yml`.
87
98
  - Push a tag like `cli-v0.1.0` or `cli-v0.1.0-alpha.1`.
88
- - The `cli-release` workflow validates `cli-v<version>` against `apps/cli/Cargo.toml`, builds GNU and musl Linux binaries plus the other platform binaries, stages npm tarballs, creates a GitHub release, and publishes them to npm with `npm publish --provenance`.
89
- - Linux npm platform tarballs are staged from musl artifacts for the broadest runtime compatibility.
99
+ - The `cli-release` workflow validates `cli-v<version>` against
100
+ `apps/cli/Cargo.toml`, builds macOS arm64 plus Linux x64/arm64 musl binaries,
101
+ stages the root and platform-specific npm tarballs, creates a GitHub release,
102
+ and publishes the platform packages before the root package.
103
+ - Linux npm platform tarballs are staged from the musl artifacts for the
104
+ broadest runtime compatibility.
package/package.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "url": "git+https://github.com/wordbricks/velen.git",
21
21
  "directory": "apps/cli"
22
22
  },
23
- "version": "0.2.43-darwin-arm64",
23
+ "version": "0.2.44-darwin-arm64",
24
24
  "engines": {
25
25
  "node": ">=18"
26
26
  }