not-tailwind 0.2.0

A tool for shortening css classes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use clap::Parser;
use not_tailwind::{
    args::NtwArgs, read_vue::build_ts_map, starter::start_all2,
};

pub fn main() {
    let args = NtwArgs::parse();
    if args.build_ts_map {
        build_ts_map();
    }
    if args.run.is_empty() {
        println!("Please specify file type");
    } else {
        start_all2(args);
    }
}