Crate clean_dev_dirs

Crate clean_dev_dirs 

Source
Expand description

§clean-dev-dirs

A fast and efficient CLI tool for recursively cleaning Rust target/ and Node.js node_modules/ directories to reclaim disk space.

This library provides the core functionality for the clean-dev-dirs CLI tool, allowing for scanning, filtering, and cleaning development project build artifacts.

Re-exports§

pub use cleaner::Cleaner;
pub use config::ExecutionOptions;
pub use config::FilterOptions;
pub use config::ProjectFilter;
pub use config::ScanOptions;
pub use filtering::filter_projects;
pub use project::BuildArtifacts;
pub use project::Project;
pub use project::ProjectType;
pub use project::Projects;
pub use scanner::Scanner;
pub use utils::parse_size;

Modules§

cleaner
Build directory cleanup functionality.
config
Configuration types and options for the application.
filtering
Project filtering functionality.
project
Project detection and management functionality.
scanner
Directory scanning and project detection functionality.
utils
Utility functions and helpers.