quavil 4.0.9 → 5.0.3
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 +9 -8
- package/bin/qvl +0 -3
- package/package.json +3 -8
package/README.md
CHANGED
|
@@ -26,19 +26,20 @@ This package contains:
|
|
|
26
26
|
- `README.md`
|
|
27
27
|
- `optionalDependencies` on the platform packages:
|
|
28
28
|
- `qvl-darwin-arm64`
|
|
29
|
-
- `qvl-darwin-x64`
|
|
30
|
-
- `qvl-linux-arm64`
|
|
31
|
-
- `qvl-linux-x64`
|
|
32
29
|
|
|
33
30
|
## Release Model
|
|
34
31
|
|
|
35
|
-
The npm packages are published by
|
|
32
|
+
The npm packages are published by the local manual release script:
|
|
36
33
|
|
|
37
|
-
|
|
34
|
+
```bash
|
|
35
|
+
./scripts/release-local.sh release
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
That script:
|
|
38
39
|
|
|
39
40
|
1. builds and packages release binaries
|
|
40
|
-
2. extracts the
|
|
41
|
-
3. updates the package versions from the
|
|
41
|
+
2. extracts the Apple Silicon macOS binary into the platform package
|
|
42
|
+
3. updates the package versions from the workspace version
|
|
42
43
|
4. publishes the platform packages
|
|
43
44
|
5. publishes the `quavil` meta-package with matching optional dependency
|
|
44
45
|
versions
|
|
@@ -46,5 +47,5 @@ That workflow:
|
|
|
46
47
|
## Notes
|
|
47
48
|
|
|
48
49
|
- the executable name is `qvl`
|
|
49
|
-
- this package targets
|
|
50
|
+
- this package targets Apple Silicon macOS only
|
|
50
51
|
- source and issue tracking live at <https://github.com/Quavil/code>
|
package/bin/qvl
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quavil",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"description": "AI coding agent for the terminal",
|
|
5
5
|
"license": "GPL-3.0-or-later",
|
|
6
6
|
"repository": {
|
|
@@ -24,17 +24,12 @@
|
|
|
24
24
|
"README.md"
|
|
25
25
|
],
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"qvl-darwin-arm64": "
|
|
28
|
-
"qvl-darwin-x64": "4.0.9",
|
|
29
|
-
"qvl-linux-x64": "4.0.9",
|
|
30
|
-
"qvl-linux-arm64": "4.0.9"
|
|
27
|
+
"qvl-darwin-arm64": "5.0.3"
|
|
31
28
|
},
|
|
32
29
|
"os": [
|
|
33
|
-
"darwin"
|
|
34
|
-
"linux"
|
|
30
|
+
"darwin"
|
|
35
31
|
],
|
|
36
32
|
"cpu": [
|
|
37
|
-
"x64",
|
|
38
33
|
"arm64"
|
|
39
34
|
]
|
|
40
35
|
}
|