#![feature(box_patterns)]
#![feature(let_chains)]
pub mod constant;
pub mod css;
pub mod fs;
pub mod hash;
pub mod html;
pub mod minify;
pub mod plugin_utils;
pub mod resolve;
pub mod resources;
pub mod runtime;
pub mod script;
pub mod sourcemap;
pub use preset_env_base;
pub use swc_ecma_codegen;
pub use swc_ecma_minifier;
pub use swc_ecma_parser;
pub use swc_ecma_preset_env;
pub use swc_ecma_transforms;
pub use swc_ecma_transforms_base;
pub use swc_ecma_utils;
pub use swc_ecma_visit;
pub use swc_typescript;
pub use swc_css_codegen;
pub use swc_css_minifier;
pub use swc_css_modules;
pub use swc_css_parser;
pub use swc_css_prefixer;
pub use swc_css_visit;
pub use swc_html_codegen;
pub use swc_html_minifier;
pub use swc_html_parser;
pub use swc_html_visit;
pub use swc_atoms;
pub use anyhow;
pub use farmfe_core::lazy_static;
pub use farmfe_core::regex;
pub use itertools;