swc_cli_impl/commands/
bundle.rs

1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;
use swc_core::trace_macro::swc_trace;

#[derive(Parser)]
pub struct BundleOptions {}

#[swc_trace]
impl super::CommandRunner for BundleOptions {
    fn execute(&self) -> anyhow::Result<()> {
        unimplemented!("Bundle command is not yet implemented")
    }
}