dev-prune 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.
Files changed (2) hide show
  1. package/README.md +11 -3
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -27,9 +27,17 @@ lockfile that is already committed. A project you have not opened since March is
27
27
  gigabytes hostage for a build you are not running.
28
28
 
29
29
  `dev-prune` finds those directories across every Git repository you register, and deletes
30
- them — but only after proving the exact command that puts them back would succeed. It is
31
- a single Rust binary, installs its own background schedule, and answers to two names:
32
- `dev-prune` and `devp`.
30
+ them — but only after proving the exact command that puts them back would succeed. It
31
+ knows twenty-three package managers, not just the obvious four: Composer, Bundler, Mix,
32
+ CocoaPods and Terraform are as first-class as npm and pip. It is a single Rust binary,
33
+ installs its own background schedule, and answers to two names: `dev-prune` and `devp`.
34
+
35
+ Deleting is only half of it. The same binary puts everything back (`devp restore`,
36
+ `devp undo`), sizes and clears the caches those package managers keep *outside* your
37
+ projects (`devp caches`), reports what Docker is holding (`devp containers`), and shows
38
+ where the disk actually went, drive by drive (`devp status`, `devp stats`). One tool for
39
+ every dependency directory on the machine, instead of one command per ecosystem and a
40
+ mental note about which ones are safe.
33
41
 
34
42
  > [!IMPORTANT]
35
43
  > **The rule the whole tool is built around:** nothing is deleted unless dev-prune has
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev-prune",
3
- "version": "1.14.0",
3
+ "version": "1.16.0",
4
4
  "description": "Universal, lockfile-safe workspace pruner. Reclaims disk space from idle Git repositories by deleting only dependency and build directories a lockfile can rebuild.",
5
5
  "bin": {
6
6
  "dev-prune": "./bin/dev-prune.js",
@@ -12,13 +12,13 @@
12
12
  "LICENSE.md"
13
13
  ],
14
14
  "optionalDependencies": {
15
- "dev-prune-darwin-arm64": "1.14.0",
16
- "dev-prune-darwin-x64": "1.14.0",
17
- "dev-prune-linux-arm64": "1.14.0",
18
- "dev-prune-linux-x64": "1.14.0",
19
- "dev-prune-windows-arm64": "1.14.0",
20
- "dev-prune-windows-x64": "1.14.0",
21
- "dev-prune-windows-x86": "1.14.0"
15
+ "dev-prune-darwin-arm64": "1.16.0",
16
+ "dev-prune-darwin-x64": "1.16.0",
17
+ "dev-prune-linux-arm64": "1.16.0",
18
+ "dev-prune-linux-x64": "1.16.0",
19
+ "dev-prune-windows-arm64": "1.16.0",
20
+ "dev-prune-windows-x64": "1.16.0",
21
+ "dev-prune-windows-x86": "1.16.0"
22
22
  },
23
23
  "engines": {
24
24
  "node": ">=20"