(name: &str)
| 919 | } |
| 920 | |
| 921 | fn should_prune_dir(name: &str) -> bool { |
| 922 | matches!( |
| 923 | name, |
| 924 | "node_modules" | "target" | ".git" | "vendor" | "dist" | "build" | ".next" | ".venv" |
| 925 | ) |
| 926 | } |
| 927 | |
| 928 | fn file_size(path: &Path) -> u64 { |
| 929 | std::fs::metadata(path).map_or(0, |meta| meta.len()) |