@fabr-client/core 0.1.16 → 0.1.18
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 +33 -21
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -31,17 +31,21 @@ Published platform packages:
|
|
|
31
31
|
- `@fabr-client/core-darwin-x64`
|
|
32
32
|
- `@fabr-client/core-darwin-arm64`
|
|
33
33
|
|
|
34
|
-
## Publish Checklist
|
|
35
|
-
|
|
36
|
-
Set the shared Rust and npm package version first:
|
|
37
|
-
|
|
38
|
-
```powershell
|
|
39
|
-
pwsh ./scripts/set-package-version.ps1 -Version 0.
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
bash ./scripts/set-package-version.sh 0.
|
|
44
|
-
```
|
|
34
|
+
## Publish Checklist
|
|
35
|
+
|
|
36
|
+
Set the shared Rust and npm package version first:
|
|
37
|
+
|
|
38
|
+
```powershell
|
|
39
|
+
pwsh ./scripts/set-package-version.ps1 -Version 0.1.19
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
bash ./scripts/set-package-version.sh 0.1.19
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Use `latest` only for stable production versions such as `0.1.19`. Use
|
|
47
|
+
prerelease versions for test channels, for example `0.1.19-beta.0` or
|
|
48
|
+
`0.1.19-rc.0`.
|
|
45
49
|
|
|
46
50
|
For maintainers, build the Windows payload with PowerShell:
|
|
47
51
|
|
|
@@ -63,13 +67,21 @@ On macOS, build both `darwin-x64` and `darwin-arm64` payloads:
|
|
|
63
67
|
--codex-runtime-repo /path/to/codex-runtime
|
|
64
68
|
```
|
|
65
69
|
|
|
66
|
-
Validate and publish:
|
|
67
|
-
|
|
68
|
-
```bash
|
|
69
|
-
node ./packaging/npm/bin/fabr-client.js --help
|
|
70
|
-
npm pack ./packaging/npm
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
70
|
+
Validate and publish:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
node ./packaging/npm/bin/fabr-client.js --help
|
|
74
|
+
npm pack ./packaging/npm
|
|
75
|
+
NPM_TAG=latest ./scripts/publish-npm-packages.sh
|
|
76
|
+
NPM_TAG=beta ./scripts/publish-npm-packages.sh
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
PowerShell:
|
|
80
|
+
|
|
81
|
+
```powershell
|
|
82
|
+
pwsh ./scripts/publish-npm-packages.ps1 -Tag latest
|
|
83
|
+
pwsh ./scripts/publish-npm-packages.ps1 -Tag beta
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
The publish scripts pass npm `--tag` explicitly and reject mismatches such as
|
|
87
|
+
`0.1.19-beta.0` with `latest`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fabr-client/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "Cross-platform launcher for Fabr Client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://pivot.enclaws.com",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"smoke": "node bin/fabr-client.js --help"
|
|
20
20
|
},
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@fabr-client/core-win32-x64": "0.1.
|
|
23
|
-
"@fabr-client/core-darwin-x64": "0.1.
|
|
24
|
-
"@fabr-client/core-darwin-arm64": "0.1.
|
|
22
|
+
"@fabr-client/core-win32-x64": "0.1.18",
|
|
23
|
+
"@fabr-client/core-darwin-x64": "0.1.18",
|
|
24
|
+
"@fabr-client/core-darwin-arm64": "0.1.18"
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"bin/",
|