@fabr-client/core 1.0.1 → 1.0.2

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
@@ -48,6 +48,7 @@ Published platform packages:
48
48
  - `@fabr-client/core-win32-x64`
49
49
  - `@fabr-client/core-darwin-x64`
50
50
  - `@fabr-client/core-darwin-arm64`
51
+ - `@fabr-client/core-linux-arm64`
51
52
 
52
53
  ## Publish Checklist
53
54
 
@@ -85,6 +86,17 @@ On macOS, build both `darwin-x64` and `darwin-arm64` payloads:
85
86
  --codex-runtime-repo /path/to/codex-runtime
86
87
  ```
87
88
 
89
+ On Linux ARM64, build the `linux-arm64` payload on an ARM64 Linux build host:
90
+
91
+ ```bash
92
+ ./scripts/package-fabr-client.sh \
93
+ --profile release \
94
+ --target aarch64-unknown-linux-gnu \
95
+ --pack-npm \
96
+ --codex-runtime-mode build \
97
+ --codex-runtime-repo /path/to/codex-runtime
98
+ ```
99
+
88
100
  Validate and publish:
89
101
 
90
102
  ```bash
@@ -13,6 +13,7 @@ const packageByPlatform = {
13
13
  "win32-x64": "@fabr-client/core-win32-x64",
14
14
  "darwin-x64": "@fabr-client/core-darwin-x64",
15
15
  "darwin-arm64": "@fabr-client/core-darwin-arm64",
16
+ "linux-arm64": "@fabr-client/core-linux-arm64",
16
17
  };
17
18
 
18
19
  function resolvePlatformPackageBinary(pkg) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fabr-client/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Cross-platform launcher for Fabr Client",
5
5
  "license": "MIT",
6
6
  "homepage": "https://pivot.enclaws.com",
@@ -18,11 +18,12 @@
18
18
  "postinstall": "node postinstall.js",
19
19
  "smoke": "node bin/fabr-client.js --help"
20
20
  },
21
- "optionalDependencies": {
22
- "@fabr-client/core-win32-x64": "1.0.1",
23
- "@fabr-client/core-darwin-x64": "1.0.1",
24
- "@fabr-client/core-darwin-arm64": "1.0.1"
25
- },
21
+ "optionalDependencies": {
22
+ "@fabr-client/core-win32-x64": "1.0.2",
23
+ "@fabr-client/core-darwin-x64": "1.0.2",
24
+ "@fabr-client/core-darwin-arm64": "1.0.2",
25
+ "@fabr-client/core-linux-arm64": "1.0.2"
26
+ },
26
27
  "files": [
27
28
  "bin/",
28
29
  "postinstall.js",
@@ -36,7 +37,8 @@
36
37
  },
37
38
  "os": [
38
39
  "darwin",
39
- "win32"
40
+ "win32",
41
+ "linux"
40
42
  ],
41
43
  "cpu": [
42
44
  "arm64",
package/postinstall.js CHANGED
@@ -12,6 +12,7 @@ const packageByPlatform = {
12
12
  "win32-x64": "@fabr-client/core-win32-x64",
13
13
  "darwin-x64": "@fabr-client/core-darwin-x64",
14
14
  "darwin-arm64": "@fabr-client/core-darwin-arm64",
15
+ "linux-arm64": "@fabr-client/core-linux-arm64",
15
16
  };
16
17
 
17
18
  function resolvePlatformPackageBinary(pkg) {