ludus-cli 0.7.3 → 0.8.1
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 +14 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -28,6 +28,20 @@ fetches the matching binary on first run instead — no extra steps. To manage t
|
|
|
28
28
|
binary yourself (air-gapped setups), set `LUDUS_SKIP_AUTO_DOWNLOAD=1` and place
|
|
29
29
|
the `ludus` binary under the package's `bin/` directory.
|
|
30
30
|
|
|
31
|
+
### "allow-scripts" warning during install
|
|
32
|
+
|
|
33
|
+
If npm's `allow-scripts` policy is enabled in your environment, you may see:
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
npm warn allow-scripts ludus-cli@x.y.z (postinstall: node install.js)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
This is **harmless** — the install still succeeds. `postinstall` is only the
|
|
40
|
+
binary downloader, and `ludus` self-heals by fetching the binary on first run if
|
|
41
|
+
the script was blocked. So you can ignore the warning and just run `ludus`. To
|
|
42
|
+
silence it and let the download run at install time, allow-list the package with
|
|
43
|
+
the command npm prints (e.g. `npm config set allow-scripts=ludus-cli --location=user`).
|
|
44
|
+
|
|
31
45
|
## What it does
|
|
32
46
|
|
|
33
47
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ludus-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "UE5 dedicated server deployment CLI with MCP server",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"bin/"
|
|
47
47
|
],
|
|
48
48
|
"binaryChecksums": {
|
|
49
|
-
"ludus_0.
|
|
50
|
-
"ludus_0.
|
|
51
|
-
"ludus_0.
|
|
52
|
-
"ludus_0.
|
|
53
|
-
"ludus_0.
|
|
49
|
+
"ludus_0.8.1_darwin_amd64.tar.gz": "f783b0b03e3f51bf1023787404f3c3e20a8d81b89dc2aaf808073e3e7d75b837",
|
|
50
|
+
"ludus_0.8.1_darwin_arm64.tar.gz": "284176cfe4b5fdb65440aaad12258635afaa181190888882e66761b7075166fe",
|
|
51
|
+
"ludus_0.8.1_linux_amd64.tar.gz": "4a52323da5de41cfc11d27849a45b08dee7910bc038ced68ddad11eb85c3c5dc",
|
|
52
|
+
"ludus_0.8.1_linux_arm64.tar.gz": "8b6a76072f07ef0438f55bf6fe9452995e01d09db97d3e13b77278e48419b988",
|
|
53
|
+
"ludus_0.8.1_windows_amd64.zip": "a416d8c1dfb0f6af013e6a6c343516c867e04de897dab715ffe866105043e41d"
|
|
54
54
|
}
|
|
55
55
|
}
|