treeship 0.23.0 → 0.25.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.
package/bin/treeship.js CHANGED
@@ -6,6 +6,7 @@ const os = require('os');
6
6
 
7
7
  const PLATFORM_MAP = {
8
8
  'linux-x64': '@treeship/cli-linux-x64',
9
+ 'linux-arm64': '@treeship/cli-linux-arm64',
9
10
  'darwin-arm64': '@treeship/cli-darwin-arm64',
10
11
  'darwin-x64': '@treeship/cli-darwin-x64',
11
12
  };
@@ -15,7 +16,7 @@ const pkg = PLATFORM_MAP[key];
15
16
 
16
17
  if (!pkg) {
17
18
  console.error(`treeship: unsupported platform ${key}`);
18
- console.error('Install via: cargo install treeship-cli');
19
+ console.error('Build from source: git clone https://github.com/zerkerlabs/treeship && cd treeship && cargo build --release -p treeship-cli');
19
20
  process.exit(1);
20
21
  }
21
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "treeship",
3
- "version": "0.23.0",
3
+ "version": "0.25.0",
4
4
  "description": "Portable trust receipts for agent workflows",
5
5
  "bin": {
6
6
  "treeship": "./bin/treeship.js"
@@ -19,9 +19,10 @@
19
19
  "linux"
20
20
  ],
21
21
  "optionalDependencies": {
22
- "@treeship/cli-linux-x64": "0.23.0",
23
- "@treeship/cli-darwin-arm64": "0.23.0",
24
- "@treeship/cli-darwin-x64": "0.23.0"
22
+ "@treeship/cli-linux-x64": "0.25.0",
23
+ "@treeship/cli-linux-arm64": "0.25.0",
24
+ "@treeship/cli-darwin-arm64": "0.25.0",
25
+ "@treeship/cli-darwin-x64": "0.25.0"
25
26
  },
26
27
  "license": "Apache-2.0",
27
28
  "repository": {
@@ -1,6 +1,6 @@
1
1
  // Treeship npm wrapper -- preinstall platform guard.
2
2
  //
3
- // We ship prebuilt binaries for darwin-arm64, darwin-x64, and linux-x64.
3
+ // We ship prebuilt binaries for darwin-arm64, darwin-x64, linux-arm64, and linux-x64.
4
4
  // As of v0.10.1 the Linux binary is statically linked against musl, so it
5
5
  // runs on every glibc and musl distribution we know of (Ubuntu, Debian,
6
6
  // Fedora, RHEL/Rocky, Amazon Linux, Alpine, distroless, busybox).