Skip to content

Commit e8f0dae

Browse files
committed
[tyler/fix-on-conflict]: TODO
1 parent 6e4e25b commit e8f0dae

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

crates/cli/src/subcommands/build.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ pub fn cli() -> clap::Command {
2323
.help("The directory to lint for nonfunctional print statements. If set to the empty string, skips linting.")
2424
)
2525
.arg(
26+
// TODO: Make this into --extra-build-args (or something similar) that will get passed along to the language's compiler.
2627
Arg::new("features")
2728
.long("features")
2829
.value_parser(clap::value_parser!(OsString))
2930
.required(false)
3031
.help("Additional features to pass to the build process (e.g. `--features feature1,feature2` for Rust modules).")
32+
// We're hiding this because we think it deserves a refactor first (see the TODO above)
3133
.hide(true)
3234
)
3335
.arg(

0 commit comments

Comments
 (0)