Skip to content

Commit e1edb33

Browse files
committed
chore(kimi-build): drop dead check_bundle command
The SEA-era bundle checker has no callers and its validation target (bundled TS entry) no longer exists after G-7; remove the subcommand and module.
1 parent 1773ef5 commit e1edb33

2 files changed

Lines changed: 0 additions & 214 deletions

File tree

packages/kimi-build/src/check_bundle/mod.rs

Lines changed: 0 additions & 205 deletions
This file was deleted.

packages/kimi-build/src/main.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use clap::{Parser, Subcommand};
22

3-
mod check_bundle;
43
mod inject;
54

65
#[derive(Parser)]
@@ -22,11 +21,6 @@ enum Commands {
2221
#[arg(short = 'o', long)]
2322
output: Option<String>,
2423
},
25-
/// Check a bundled JS file for unresolved external requires/imports
26-
CheckBundle {
27-
/// Path to the bundled JS file to check
28-
path: String,
29-
},
3024
}
3125

3226
fn main() -> anyhow::Result<()> {
@@ -37,9 +31,6 @@ fn main() -> anyhow::Result<()> {
3731
inject::run(&input, &blob, &output)?;
3832
println!("Injected SEA blob into {}", output);
3933
}
40-
Commands::CheckBundle { path } => {
41-
check_bundle::check_bundle(&path)?;
42-
}
4334
}
4435
Ok(())
4536
}

0 commit comments

Comments
 (0)