reasonix 1.38.3 → 1.38.5
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 +5 -9
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -134,19 +134,15 @@ make cross # -> dist/ (darwin|linux|windows × amd64|arm64)
|
|
|
134
134
|
|
|
135
135
|
#### Desktop
|
|
136
136
|
|
|
137
|
-
The desktop build additionally requires
|
|
138
|
-
|
|
139
|
-
- **Node 24+ and pnpm 10** (`npm install -g pnpm@10`) for the frontend
|
|
140
|
-
- **Wails CLI** matching the shared `.wails-version` pin
|
|
137
|
+
The desktop build additionally requires **Node 24+ and pnpm 10**
|
|
138
|
+
(`npm install -g pnpm@10`) for the frontend and the Electron shell:
|
|
141
139
|
|
|
142
140
|
```sh
|
|
143
|
-
|
|
144
|
-
cd desktop
|
|
145
|
-
wails build
|
|
141
|
+
scripts/desktop-build.sh darwin/arm64 v0.0.0-dev # one platform per run
|
|
146
142
|
```
|
|
147
143
|
|
|
148
|
-
|
|
149
|
-
|
|
144
|
+
No platform webview dependencies are needed — the shell ships its own
|
|
145
|
+
Chromium. See the [desktop build guide](desktop/README.md#prerequisites).
|
|
150
146
|
|
|
151
147
|
## Quick start
|
|
152
148
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reasonix",
|
|
3
|
-
"version": "1.38.
|
|
3
|
+
"version": "1.38.5",
|
|
4
4
|
"description": "Cache-first DeepSeek coding agent for the terminal.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"reasonix": "bin/reasonix.js"
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"tui"
|
|
30
30
|
],
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@reasonix/cli-darwin-arm64": "1.38.
|
|
33
|
-
"@reasonix/cli-darwin-x64": "1.38.
|
|
34
|
-
"@reasonix/cli-linux-arm64": "1.38.
|
|
35
|
-
"@reasonix/cli-linux-x64": "1.38.
|
|
36
|
-
"@reasonix/cli-win32-arm64": "1.38.
|
|
37
|
-
"@reasonix/cli-win32-x64": "1.38.
|
|
32
|
+
"@reasonix/cli-darwin-arm64": "1.38.5",
|
|
33
|
+
"@reasonix/cli-darwin-x64": "1.38.5",
|
|
34
|
+
"@reasonix/cli-linux-arm64": "1.38.5",
|
|
35
|
+
"@reasonix/cli-linux-x64": "1.38.5",
|
|
36
|
+
"@reasonix/cli-win32-arm64": "1.38.5",
|
|
37
|
+
"@reasonix/cli-win32-x64": "1.38.5"
|
|
38
38
|
},
|
|
39
|
-
"reasonixCandidateSha": "
|
|
39
|
+
"reasonixCandidateSha": "95d02e52bd99471e29da0c3b0cf6306fcfc3d43d"
|
|
40
40
|
}
|