Skip to content

Commit

Permalink
chore: Remove 'UNSTABLE:' from 'deno compile' help (denoland#21003)
Browse files Browse the repository at this point in the history
Signed-off-by: Bartek Iwańczuk <biwanczuk@gmail.com>
  • Loading branch information
bartlomieju authored Oct 28, 2023
1 parent e7abb70 commit e6ff84c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cli/args/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1123,9 +1123,9 @@ Unless --reload is specified, this command will not re-download already cached d

fn compile_subcommand() -> Command {
Command::new("compile")
.about("UNSTABLE: Compile the script into a self contained executable")
.about("Compile the script into a self contained executable")
.long_about(
"UNSTABLE: Compiles the given script into a self contained executable.
"Compiles the given script into a self contained executable.
deno compile -A https://deno.land/std/http/file_server.ts
deno compile --output color_util https://deno.land/std/examples/colors.ts
Expand All @@ -1152,7 +1152,7 @@ supported in canary.
.arg(
Arg::new("include")
.long("include")
.help("UNSTABLE: Additional module to include in the module graph")
.help("Additional module to include in the module graph")
.long_help(
"Includes an additional module in the compiled executable's module
graph. Use this flag if a dynamically imported module or a web worker main
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/integration/flags_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fn help_output() {
"Bundle module and dependencies into single file",
"Cache the dependencies",
"Type-check the dependencies",
"UNSTABLE: Compile the script into a self contained executable",
"Compile the script into a self contained executable",
"Generate shell completions",
"Print coverage reports",
"Show documentation for a module",
Expand Down

0 comments on commit e6ff84c

Please sign in to comment.