infiniloom 0.3.1 → 0.3.2
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 +8 -6
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -13,13 +13,15 @@ function getArtifactInfo() {
|
|
|
13
13
|
const platform = process.platform;
|
|
14
14
|
const arch = process.arch;
|
|
15
15
|
|
|
16
|
+
// Artifact names must match the release workflow output (release.yml)
|
|
16
17
|
const mapping = {
|
|
17
|
-
"darwin-x64": { artifact: "infiniloom-
|
|
18
|
-
"darwin-arm64": { artifact: "infiniloom-
|
|
19
|
-
"linux-x64": { artifact: "infiniloom-
|
|
20
|
-
"linux-arm64": { artifact: "infiniloom-
|
|
21
|
-
"win32-x64": { artifact: "infiniloom-
|
|
22
|
-
|
|
18
|
+
"darwin-x64": { artifact: "infiniloom-darwin-x64.tar.gz", binary: "infiniloom" },
|
|
19
|
+
"darwin-arm64": { artifact: "infiniloom-darwin-arm64.tar.gz", binary: "infiniloom" },
|
|
20
|
+
"linux-x64": { artifact: "infiniloom-linux-x64.tar.gz", binary: "infiniloom" },
|
|
21
|
+
"linux-arm64": { artifact: "infiniloom-linux-arm64.tar.gz", binary: "infiniloom" },
|
|
22
|
+
"win32-x64": { artifact: "infiniloom-windows-x64.zip", binary: "infiniloom.exe" },
|
|
23
|
+
// Note: Windows ARM64 not currently built in release workflow
|
|
24
|
+
"win32-arm64": { artifact: "infiniloom-windows-x64.zip", binary: "infiniloom.exe" },
|
|
23
25
|
};
|
|
24
26
|
|
|
25
27
|
const key = `${platform}-${arch}`;
|