@hologit/holo-tree 0.2.0 → 0.3.0

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 +14 -10
  2. package/package.json +10 -4
package/README.md CHANGED
@@ -78,16 +78,20 @@ git-ignored (built per-platform in CI).
78
78
  Published as the scoped package **`@hologit/holo-tree`** with per-platform
79
79
  prebuilt binaries shipped as `optionalDependencies`:
80
80
 
81
- | Platform package | Triple | Built on |
82
- | --- | --- | --- |
83
- | `@hologit/holo-tree-linux-x64-gnu` | `x86_64-unknown-linux-gnu` | ubuntu-latest |
84
- | `@hologit/holo-tree-darwin-arm64` | `aarch64-apple-darwin` | macos-latest |
85
- | `@hologit/holo-tree-win32-x64-msvc` | `x86_64-pc-windows-msvc` | windows-latest |
86
-
87
- Each target builds **natively** on its runner no cross-compilation. The
88
- `.github/workflows/holo-tree-napi.yml` workflow builds + smoke-tests all three on
89
- every PR touching the binding, and on a `holo-tree-v*` tag it builds then
90
- publishes.
81
+ | Platform package | Triple | Built on | Smoke-tested |
82
+ | --- | --- | --- | --- |
83
+ | `@hologit/holo-tree-linux-x64-gnu` | `x86_64-unknown-linux-gnu` | ubuntu-latest | ✓ native |
84
+ | `@hologit/holo-tree-linux-arm64-gnu` | `aarch64-unknown-linux-gnu` | ubuntu-24.04-arm | ✓ native |
85
+ | `@hologit/holo-tree-linux-x64-musl` | `x86_64-unknown-linux-musl` | ubuntu-latest (musl cross) | build-only |
86
+ | `@hologit/holo-tree-darwin-arm64` | `aarch64-apple-darwin` | macos-latest | ✓ native |
87
+ | `@hologit/holo-tree-darwin-x64` | `x86_64-apple-darwin` | macos-latest (cross) | build-only |
88
+ | `@hologit/holo-tree-win32-x64-msvc` | `x86_64-pc-windows-msvc` | windows-latest | native |
89
+
90
+ Native targets build + smoke-test on a matching runner; cross targets (musl,
91
+ darwin-x64) build only, since their `.node` can't run on the host arch/libc (the
92
+ logic is covered by the native runs). The `.github/workflows/holo-tree-napi.yml`
93
+ workflow builds all six on every PR touching the binding, and on a
94
+ `holo-tree-v*` tag it builds then publishes.
91
95
 
92
96
  Auth is **npm trusted publishing (OIDC)** — no tokens, matching hologit's
93
97
  `publish-npm.yml`. Trusted publishing is configured *per package*, and a package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hologit/holo-tree",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Node.js native binding for holo-tree — mutable in-memory git trees via gix",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -19,7 +19,10 @@
19
19
  "defaults": false,
20
20
  "additional": [
21
21
  "x86_64-unknown-linux-gnu",
22
+ "aarch64-unknown-linux-gnu",
23
+ "x86_64-unknown-linux-musl",
22
24
  "aarch64-apple-darwin",
25
+ "x86_64-apple-darwin",
23
26
  "x86_64-pc-windows-msvc"
24
27
  ]
25
28
  }
@@ -29,9 +32,12 @@
29
32
  "index.d.ts"
30
33
  ],
31
34
  "optionalDependencies": {
32
- "@hologit/holo-tree-linux-x64-gnu": "0.2.0",
33
- "@hologit/holo-tree-darwin-arm64": "0.2.0",
34
- "@hologit/holo-tree-win32-x64-msvc": "0.2.0"
35
+ "@hologit/holo-tree-linux-x64-gnu": "0.3.0",
36
+ "@hologit/holo-tree-linux-arm64-gnu": "0.3.0",
37
+ "@hologit/holo-tree-linux-x64-musl": "0.3.0",
38
+ "@hologit/holo-tree-darwin-arm64": "0.3.0",
39
+ "@hologit/holo-tree-darwin-x64": "0.3.0",
40
+ "@hologit/holo-tree-win32-x64-msvc": "0.3.0"
35
41
  },
36
42
  "scripts": {
37
43
  "artifacts": "napi artifacts",