donsetch 2.3.3 → 2.3.7
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 +1 -0
- package/install.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@ Downloads the prebuilt binary for your platform from [GitHub Releases](https://g
|
|
|
19
19
|
| Platform | Binary |
|
|
20
20
|
|---|---|
|
|
21
21
|
| Linux x86_64 | `donsetch-linux-x64.tar.gz` |
|
|
22
|
+
| Linux arm64 | `donsetch-linux-arm64.tar.gz` |
|
|
22
23
|
| macOS arm64 | `donsetch-darwin-arm64.tar.gz` |
|
|
23
24
|
| Windows x86_64 | `donsetch-win32-x64.tar.gz` |
|
|
24
25
|
|
package/install.js
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
//
|
|
12
12
|
// Supported platforms:
|
|
13
13
|
// linux-x64 Linux x86_64
|
|
14
|
+
// linux-arm64 Linux ARM64 (aarch64)
|
|
14
15
|
// darwin-arm64 macOS Apple Silicon
|
|
15
16
|
// win32-x64 Windows x86_64
|
|
16
17
|
|
|
@@ -27,6 +28,7 @@ const TAG = `v${VERSION}`;
|
|
|
27
28
|
// ── platform mapping ────────────────────────────────────────────
|
|
28
29
|
const PLATFORMS = {
|
|
29
30
|
'linux-x64': { asset: 'donsetch-linux-x64.tar.gz', binary: 'donsetch' },
|
|
31
|
+
'linux-arm64': { asset: 'donsetch-linux-arm64.tar.gz', binary: 'donsetch' },
|
|
30
32
|
'darwin-arm64': { asset: 'donsetch-darwin-arm64.tar.gz', binary: 'donsetch' },
|
|
31
33
|
'win32-x64': { asset: 'donsetch-win32-x64.tar.gz', binary: 'donsetch.exe' },
|
|
32
34
|
};
|
|
@@ -39,6 +41,7 @@ if (!plat) {
|
|
|
39
41
|
console.error('');
|
|
40
42
|
console.error('Supported platforms:');
|
|
41
43
|
console.error(' linux-x64 Linux x86_64');
|
|
44
|
+
console.error(' linux-arm64 Linux ARM64 (aarch64)');
|
|
42
45
|
console.error(' darwin-arm64 macOS Apple Silicon');
|
|
43
46
|
console.error(' win32-x64 Windows x86_64');
|
|
44
47
|
console.error('');
|