dev-prune-linux-arm64 1.10.0 → 1.11.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 (3) hide show
  1. package/README.md +36 -16
  2. package/bin/dev-prune +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -691,7 +691,8 @@ window for every adapter under it.
691
691
 
692
692
  A download cache is a bet that re-downloading costs less than the disk it occupies,
693
693
  and somewhere the bet stops paying. `devp config set cache_max_gb uv=10,npm=10` is
694
- where you say where: a ceiling in gibibytes, per manager, measured against that
694
+ where you say where: a ceiling in gibibytes GiB, the unit the report prints —
695
+ per manager, measured against that
695
696
  manager's whole footprint. A manager over its cap is **marked** in `devp caches` —
696
697
  setting one deletes nothing — and `devp caches clear --over-cap all` empties exactly
697
698
  what is marked, when you type it. It is keyed by the names `devp caches clear` takes
@@ -937,6 +938,24 @@ the two lists **add up**. A list is not a decision, so a team declaration never
937
938
  one you wrote yourself, and naming the same path in both leaves one directory, rebuilt
938
939
  by the committed command.
939
940
 
941
+ And because the committed file is the whole team's, one declaration can be right for
942
+ everybody but you — the directory the project regenerates is the one your copy happens
943
+ to be holding something in. `prunable.exclude` is how you say so without editing a file
944
+ your colleagues share:
945
+
946
+ ```json
947
+ { "prunable": { "exclude": ["tools/vendor"] } }
948
+ ```
949
+
950
+ Spelled the way a `path` is, so `tools/vendor`, `tools/vendor/`, `./tools/vendor` and
951
+ `tools\vendor` are one path; an exclusion that missed on a trailing slash would delete
952
+ the exact directory it was written to keep. It is honoured from whichever file names it,
953
+ because a veto only ever deletes less, and the entry it names leaves the pass entirely —
954
+ not deleted, and not reported as a refusal on every run either. Naming the same path in
955
+ both lists of one file is a typo rather than a decision, since the exclusion wins and the
956
+ declaration then never runs; `devp doctor` points that out. Delete the exclusion and
957
+ the declaration is back in force.
958
+
940
959
  An out-of-range value is rejected with the range in the message rather than silently
941
960
  clamped. `scan_depth` included: `config set` accepts `1`–`32` and refuses anything else
942
961
  outright — the clamp to that range survives only as the backstop for a hand-edited
@@ -970,21 +989,21 @@ Full decision flow: [docs/BACKGROUND_AUTOMATION.md](docs/BACKGROUND_AUTOMATION.m
970
989
 
971
990
  ## How it compares
972
991
 
973
- | | `dev-prune` | `npkill` | `cargo-clean-all` | `pyclean` | `git clean` | `dust` / `ncdu` | BleachBit |
974
- | :---------------------------------------- | :-------------------------: | :------: | :---------------: | :-------: | :-------------: | :-------------: | :-------: |
975
- | Ecosystems | **JS/TS, Python, Rust, Go** | Node | Rust | Python | untracked files | — | OS caches |
976
- | Many projects per repository | **✓** | ✗ | ✗ | ✗ | n/a | n/a | ✗ |
977
- | `.git` boundary enforced | **✓** | ✗ | ✓ | ✗ | ✓ | ✗ | ✗ |
978
- | Lockfile verified before deleting | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
979
- | Commit log **and** `mtime` activity check | **✓** | ✗ | `mtime` only | ✗ | ✗ | ✗ | ✗ |
980
- | One-command restore | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
981
- | Undo the last pass | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
982
- | Background scheduler | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
983
- | Git hook auto-registration | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
984
- | Per-repository config + 0ms opt-out | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
985
- | Machine-readable `--json` | **✓** | ✗ | ✗ | ✗ | ✗ | partial | ✗ |
986
- | AI agent skill | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
987
- | Runtime required | **none** (static binary) | Node.js | none | Python | none | none | Python |
992
+ | | `dev-prune` | `kondo` | `npkill` | `cargo-clean-all` | `pyclean` | `git clean` | `dust` / `ncdu` | BleachBit |
993
+ | :---------------------------------------- | :----------------------: | :---------------: | :------: | :---------------: | :-------: | :-------------: | :-------------: | :-------: |
994
+ | Package managers | **23** | ~20 project types | Node | Rust | Python | untracked files | — | OS caches |
995
+ | Many projects per repository | **✓** | ✓ | ✗ | ✗ | ✗ | n/a | n/a | ✗ |
996
+ | `.git` boundary enforced | **✓** | ✗ | ✗ | ✓ | ✗ | ✓ | ✗ | ✗ |
997
+ | Lockfile verified before deleting | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
998
+ | Commit log **and** `mtime` activity check | **✓** | `mtime` only | ✗ | `mtime` only | ✗ | ✗ | ✗ | ✗ |
999
+ | One-command restore | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
1000
+ | Undo the last pass | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
1001
+ | Background scheduler | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
1002
+ | Git hook auto-registration | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
1003
+ | Per-repository config + 0ms opt-out | **✓** | `--ignored-dirs` | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
1004
+ | Machine-readable `--json` | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | partial | ✗ |
1005
+ | AI agent skill | **✓** | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ | ✗ |
1006
+ | Runtime required | **none** (static binary) | none | Node.js | none | Python | none | none | Python |
988
1007
 
989
1008
  Longer analysis: [docs/MARKET_ANALYSIS.md](docs/MARKET_ANALYSIS.md).
990
1009
 
@@ -1043,6 +1062,7 @@ Deeper: [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) ·
1043
1062
  | [Documentation hub](docs/README.md) | Index of everything below |
1044
1063
  | [CLI reference](docs/CLI_REFERENCE.md) | Every command, flag, setting, exit code and `--json` document |
1045
1064
  | [Safety invariants](docs/SAFETY_INVARIANTS.md) | The seven guarantees, and why each exists |
1065
+ | [Why it refuses](docs/WHY.md) | The argument the whole design came from |
1046
1066
  | [Architecture](docs/ARCHITECTURE.md) · [HLD](docs/architecture/HLD.md) · [LLD](docs/architecture/LLD.md) | How it is built |
1047
1067
  | [Background automation](docs/BACKGROUND_AUTOMATION.md) | Schedulers, hooks, chaining, and turning it all off |
1048
1068
  | [IDE & editor integration](docs/IDE_INTEGRATION.md) | The extension, schema IntelliSense, and every editor it works in |
package/bin/dev-prune CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev-prune-linux-arm64",
3
- "version": "1.10.0",
3
+ "version": "1.11.0",
4
4
  "description": "Prebuilt dev-prune binary for linux arm64. Installed automatically by the 'dev-prune' package; not meant to be depended on directly.",
5
5
  "os": ["linux"],
6
6
  "cpu": ["arm64"],