@fabr-client/core 1.0.3 → 1.0.4
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 +43 -0
- package/bin/fabr-client.js +1 -0
- package/package.json +6 -5
- package/postinstall.js +1 -0
package/README.md
CHANGED
|
@@ -49,6 +49,7 @@ Published platform packages:
|
|
|
49
49
|
- `@fabr-client/core-darwin-x64`
|
|
50
50
|
- `@fabr-client/core-darwin-arm64`
|
|
51
51
|
- `@fabr-client/core-linux-arm64`
|
|
52
|
+
- `@fabr-client/core-linux-x64`
|
|
52
53
|
|
|
53
54
|
## Publish Checklist
|
|
54
55
|
|
|
@@ -97,6 +98,48 @@ On Linux ARM64, build the `linux-arm64` payload on an ARM64 Linux build host:
|
|
|
97
98
|
--codex-runtime-repo /path/to/codex-runtime
|
|
98
99
|
```
|
|
99
100
|
|
|
101
|
+
On Linux x64, build the `linux-x64` payload on an x86_64 Linux build host:
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
./scripts/package-fabr-client.sh \
|
|
105
|
+
--profile release \
|
|
106
|
+
--target x86_64-unknown-linux-gnu \
|
|
107
|
+
--pack-npm \
|
|
108
|
+
--codex-runtime-mode staged \
|
|
109
|
+
--codex-runtime-bin /path/to/codex-x86_64-linux-binary
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## Release Artifact Manifest
|
|
113
|
+
|
|
114
|
+
Desktop installers consume versioned release artifacts and checksums instead of
|
|
115
|
+
importing source files from this repository. Place finalized payload archives in
|
|
116
|
+
one artifact directory with names matching the release version:
|
|
117
|
+
|
|
118
|
+
```text
|
|
119
|
+
fabr-client-<version>-win32-x64.zip
|
|
120
|
+
fabr-client-<version>-darwin-x64.tar.gz
|
|
121
|
+
fabr-client-<version>-darwin-arm64.tar.gz
|
|
122
|
+
fabr-client-<version>-linux-x64.tar.gz
|
|
123
|
+
fabr-client-<version>-linux-arm64.tar.gz
|
|
124
|
+
FabrClientSetup-<version>-x64.exe
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
Generate `source-manifest.json` and `SHA256SUMS`:
|
|
128
|
+
|
|
129
|
+
```powershell
|
|
130
|
+
pwsh ./scripts/new-source-manifest.ps1 `
|
|
131
|
+
-ArtifactDir dist/artifacts `
|
|
132
|
+
-OutputPath dist/source-manifest.json `
|
|
133
|
+
-Sha256SumsPath dist/SHA256SUMS
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
bash ./scripts/new-source-manifest.sh \
|
|
138
|
+
--artifact-dir dist/artifacts \
|
|
139
|
+
--output dist/source-manifest.json \
|
|
140
|
+
--sha256sums dist/SHA256SUMS
|
|
141
|
+
```
|
|
142
|
+
|
|
100
143
|
Validate and publish:
|
|
101
144
|
|
|
102
145
|
```bash
|
package/bin/fabr-client.js
CHANGED
|
@@ -14,6 +14,7 @@ const packageByPlatform = {
|
|
|
14
14
|
"darwin-x64": "@fabr-client/core-darwin-x64",
|
|
15
15
|
"darwin-arm64": "@fabr-client/core-darwin-arm64",
|
|
16
16
|
"linux-arm64": "@fabr-client/core-linux-arm64",
|
|
17
|
+
"linux-x64": "@fabr-client/core-linux-x64",
|
|
17
18
|
};
|
|
18
19
|
|
|
19
20
|
function resolvePlatformPackageBinary(pkg) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fabr-client/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Cross-platform launcher for Fabr Client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://pivot.enclaws.com",
|
|
@@ -19,10 +19,11 @@
|
|
|
19
19
|
"smoke": "node bin/fabr-client.js --help"
|
|
20
20
|
},
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@fabr-client/core-win32-x64": "1.0.
|
|
23
|
-
"@fabr-client/core-darwin-x64": "1.0.
|
|
24
|
-
"@fabr-client/core-darwin-arm64": "1.0.
|
|
25
|
-
"@fabr-client/core-linux-arm64": "1.0.
|
|
22
|
+
"@fabr-client/core-win32-x64": "1.0.4",
|
|
23
|
+
"@fabr-client/core-darwin-x64": "1.0.4",
|
|
24
|
+
"@fabr-client/core-darwin-arm64": "1.0.4",
|
|
25
|
+
"@fabr-client/core-linux-arm64": "1.0.4",
|
|
26
|
+
"@fabr-client/core-linux-x64": "1.0.4"
|
|
26
27
|
},
|
|
27
28
|
"files": [
|
|
28
29
|
"bin/",
|
package/postinstall.js
CHANGED
|
@@ -13,6 +13,7 @@ const packageByPlatform = {
|
|
|
13
13
|
"darwin-x64": "@fabr-client/core-darwin-x64",
|
|
14
14
|
"darwin-arm64": "@fabr-client/core-darwin-arm64",
|
|
15
15
|
"linux-arm64": "@fabr-client/core-linux-arm64",
|
|
16
|
+
"linux-x64": "@fabr-client/core-linux-x64",
|
|
16
17
|
};
|
|
17
18
|
|
|
18
19
|
function resolvePlatformPackageBinary(pkg) {
|