ludus-cli 0.8.0 → 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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. 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.8.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.8.0_darwin_amd64.tar.gz": "47ab015e141728d7b11491fd93cd61a76a70e490c37b5a079c77b3de95490520",
50
- "ludus_0.8.0_darwin_arm64.tar.gz": "a7f91bd1f79b4e545ac33be9a728042d74ca777ad8548c0100f5bab1bff16bb0",
51
- "ludus_0.8.0_linux_amd64.tar.gz": "8e25990a5643ad792402e2d99a804ca8b5b085d17ce74d57bc70b78d438a2a43",
52
- "ludus_0.8.0_linux_arm64.tar.gz": "863299058d921caf86b150cb9f91863d83b30ae42998af53298abbc5e384da9b",
53
- "ludus_0.8.0_windows_amd64.zip": "b8656d5f772c5525dbd6c3047c3718d66b5a23bac203b053cc515713a34c6172"
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
  }