dev-prune-linux-x64 1.14.0 → 1.16.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 +12 -4
- package/bin/dev-prune +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
npm install -g dev-prune
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
This package holds nothing but the prebuilt `dev-prune`
|
|
9
|
+
This package holds nothing but the prebuilt `dev-prune` executables for **linux x64**.
|
|
10
10
|
It exists because npm has no other way to ship a per-platform executable: `dev-prune`
|
|
11
11
|
lists all seven platform packages as optional dependencies, and npm installs only the one
|
|
12
12
|
matching your machine. Installing this one directly gives you a binary with no launcher
|
|
@@ -51,9 +51,17 @@ lockfile that is already committed. A project you have not opened since March is
|
|
|
51
51
|
gigabytes hostage for a build you are not running.
|
|
52
52
|
|
|
53
53
|
`dev-prune` finds those directories across every Git repository you register, and deletes
|
|
54
|
-
them — but only after proving the exact command that puts them back would succeed. It
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
them — but only after proving the exact command that puts them back would succeed. It
|
|
55
|
+
knows twenty-three package managers, not just the obvious four: Composer, Bundler, Mix,
|
|
56
|
+
CocoaPods and Terraform are as first-class as npm and pip. It is a single Rust binary,
|
|
57
|
+
installs its own background schedule, and answers to two names: `dev-prune` and `devp`.
|
|
58
|
+
|
|
59
|
+
Deleting is only half of it. The same binary puts everything back (`devp restore`,
|
|
60
|
+
`devp undo`), sizes and clears the caches those package managers keep *outside* your
|
|
61
|
+
projects (`devp caches`), reports what Docker is holding (`devp containers`), and shows
|
|
62
|
+
where the disk actually went, drive by drive (`devp status`, `devp stats`). One tool for
|
|
63
|
+
every dependency directory on the machine, instead of one command per ecosystem and a
|
|
64
|
+
mental note about which ones are safe.
|
|
57
65
|
|
|
58
66
|
> [!IMPORTANT]
|
|
59
67
|
> **The rule the whole tool is built around:** nothing is deleted unless dev-prune has
|
package/bin/dev-prune
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev-prune-linux-x64",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Prebuilt dev-prune binary for linux x64. Installed automatically by the 'dev-prune' package; not meant to be depended on directly.",
|
|
5
5
|
"os": ["linux"],
|
|
6
6
|
"cpu": ["x64"],
|