infiniloom 0.3.0 → 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/README.md +7 -3
- package/install.js +8 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,12 +58,16 @@ infiniloom map /path/to/repo --budget 2000
|
|
|
58
58
|
If npm installation fails, you can install via:
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
-
#
|
|
62
|
-
|
|
61
|
+
# Homebrew Cask (macOS - fast, pre-built binary)
|
|
62
|
+
brew tap Topos-Labs/infiniloom
|
|
63
|
+
brew install --cask infiniloom
|
|
63
64
|
|
|
64
|
-
# Homebrew (
|
|
65
|
+
# Homebrew Formula (builds from source)
|
|
65
66
|
brew tap Topos-Labs/infiniloom
|
|
66
67
|
brew install infiniloom
|
|
68
|
+
|
|
69
|
+
# Cargo (Rust)
|
|
70
|
+
cargo install infiniloom
|
|
67
71
|
```
|
|
68
72
|
|
|
69
73
|
## Documentation
|
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}`;
|