quavil 4.0.8 → 5.0.0

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.
Files changed (3) hide show
  1. package/README.md +9 -8
  2. package/bin/qvl +0 -3
  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 `.github/workflows/release.yml`.
32
+ The npm packages are published by the local manual release script:
36
33
 
37
- That workflow:
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 platform binary into each platform package
41
- 3. updates the package versions from the release tag
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 macOS and Linux on x64 and arm64
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
@@ -6,9 +6,6 @@ const fs = require("fs");
6
6
 
7
7
  const PLATFORMS = {
8
8
  "darwin-arm64": "qvl-darwin-arm64",
9
- "darwin-x64": "qvl-darwin-x64",
10
- "linux-x64": "qvl-linux-x64",
11
- "linux-arm64": "qvl-linux-arm64",
12
9
  };
13
10
 
14
11
  function getBinaryPath() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quavil",
3
- "version": "4.0.8",
3
+ "version": "5.0.0",
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": "4.0.8",
28
- "qvl-darwin-x64": "4.0.8",
29
- "qvl-linux-x64": "4.0.8",
30
- "qvl-linux-arm64": "4.0.8"
27
+ "qvl-darwin-arm64": "5.0.0"
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
  }