cssforge-core 0.5.1

Core semantic analysis and lossless refactoring engine for CSSForge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod discovery;
pub mod engine;
pub mod model;
pub mod output;
pub mod scanner;

pub use discovery::{discover_css_files, is_git_dirty};
pub use engine::{
    analyze_file, analyze_workspace, apply_selected_plans, apply_until_stable,
    extract_style_blocks, unified_diff,
};
pub use model::*;
pub use output::{OutputOptions, WriteResult, write_result};