@wordbricks/velen 0.2.2-win32-x64 → 0.2.3-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
@@ -42,8 +42,8 @@ Release:
42
42
 
43
43
  - Keep `apps/cli/package.json` at `0.0.0-dev`.
44
44
  - Keep `apps/cli/Cargo.toml` and `apps/cli/Cargo.lock` at `0.0.0` on normal development commits.
45
- - Before tagging a release, update `apps/cli/Cargo.toml` and `apps/cli/Cargo.lock` to the real release version on the tagged commit.
46
- - After the release commit, return the Rust workspace version metadata to `0.0.0` on the next development commit.
45
+ - Only temporary `release/...` branches should change `apps/cli/Cargo.toml` and `apps/cli/Cargo.lock` to the real release version before tagging.
46
+ - After the release is tagged, close or delete that temporary release branch/PR so `origin/main` stays at `0.0.0`.
47
47
  - Configure npm trusted publishing for `@wordbricks/velen` with GitHub Actions using the workflow filename `cli-release.yml`.
48
48
  - Push a tag like `cli-v0.1.0` or `cli-v0.1.0-alpha.1`.
49
49
  - 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`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "cpu": [
3
- "x64"
3
+ "arm64"
4
4
  ],
5
5
  "description": "Velen CLI",
6
6
  "files": [
@@ -10,7 +10,7 @@
10
10
  "license": "Apache-2.0",
11
11
  "name": "@wordbricks/velen",
12
12
  "os": [
13
- "win32"
13
+ "darwin"
14
14
  ],
15
15
  "publishConfig": {
16
16
  "access": "public"
@@ -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.2-win32-x64",
23
+ "version": "0.2.3-darwin-arm64",
24
24
  "engines": {
25
25
  "node": ">=18"
26
26
  }