dev-prune-windows-x86 1.7.0 → 1.8.0
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 +10 -3
- package/bin/dev-prune.exe +0 -0
- package/bin/devp.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,6 +119,7 @@ problem.
|
|
|
119
119
|
### From a package manager
|
|
120
120
|
|
|
121
121
|
```bash
|
|
122
|
+
npm install -g dev-prune # or: npx dev-prune status
|
|
122
123
|
uv tool install dev-prune # or: uvx dev-prune status
|
|
123
124
|
pipx install dev-prune
|
|
124
125
|
pip install dev-prune
|
|
@@ -126,9 +127,15 @@ cargo binstall dev-prune # fetches the prebuilt release archive
|
|
|
126
127
|
cargo install dev-prune # builds from source, needs Rust 1.88+
|
|
127
128
|
```
|
|
128
129
|
|
|
129
|
-
The PyPI packages **contain the binary** — there is no download step at install
|
|
130
|
-
so they work behind a registry mirror and offline.
|
|
131
|
-
a prebuilt executable.
|
|
130
|
+
The npm and PyPI packages **contain the binary** — there is no download step at install
|
|
131
|
+
time, so they work under `npm ci --ignore-scripts`, behind a registry mirror and offline.
|
|
132
|
+
Everything but `cargo install` ships a prebuilt executable.
|
|
133
|
+
|
|
134
|
+
npm delivers it the way esbuild and Biome do: one small `dev-prune` package that lists
|
|
135
|
+
seven platform packages as optional dependencies, of which npm installs exactly the one
|
|
136
|
+
matching your machine. That is why there is no download step to block. Windows works from
|
|
137
|
+
1.8.0 onwards — earlier versions installed and then reported no binary to run, so a
|
|
138
|
+
machine still holding `dev-prune@1.7.0` needs `npm install -g dev-prune@latest`.
|
|
132
139
|
|
|
133
140
|
crates.io stores source and nothing else, so `cargo install` has no binary to fetch and
|
|
134
141
|
always compiles. [`cargo binstall`](https://github.com/cargo-bins/cargo-binstall) is the
|
package/bin/dev-prune.exe
CHANGED
|
Binary file
|
package/bin/devp.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev-prune-windows-x86",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "Prebuilt dev-prune binary for windows x86. Installed automatically by the 'dev-prune' package; not meant to be depended on directly.",
|
|
5
5
|
"os": ["win32"],
|
|
6
6
|
"cpu": ["ia32"],
|