use clap::Parser;
use commands::{Command, CommandRunner, PluginSubcommand, SwcCliOptions};
mod commands;
mod util;
pub fn run() -> anyhow::Result<()> {
    let command = SwcCliOptions::parse().command;
    match &command {
        Command::Plugin(PluginSubcommand::New(options)) => options.execute(),
        Command::Compile(options) => options.execute(),
        Command::Minify(options) => options.execute(),
        Command::Bundle(options) => options.execute(),
        Command::Lint(options) => options.execute(),
    }
}