@0x1labs/vyer 0.1.3 → 0.1.4
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/install.js +2 -1
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -16,7 +16,8 @@ const VERSION = require("./package.json").version;
|
|
|
16
16
|
// node platform+arch -> Rust target triple (must match release.yml's matrix)
|
|
17
17
|
const TARGETS = {
|
|
18
18
|
"darwin arm64": "aarch64-apple-darwin",
|
|
19
|
-
|
|
19
|
+
// Intel macOS (x86_64-apple-darwin) is intentionally not published; this
|
|
20
|
+
// bails to the from-source hint for it. See release.yml + packaging/homebrew.
|
|
20
21
|
"linux x64": "x86_64-unknown-linux-gnu",
|
|
21
22
|
"linux arm64": "aarch64-unknown-linux-gnu",
|
|
22
23
|
"win32 x64": "x86_64-pc-windows-msvc",
|