chore: Remove 'UNSTABLE:' from 'deno compile' help (#21003)

Signed-off-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
Bartek Iwańczuk 2023-10-28 03:54:52 +02:00 committed by GitHub
parent e7abb705f9
commit e6ff84c9f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -1123,9 +1123,9 @@ Unless --reload is specified, this command will not re-download already cached d
fn compile_subcommand() -> Command { fn compile_subcommand() -> Command {
Command::new("compile") Command::new("compile")
.about("UNSTABLE: Compile the script into a self contained executable") .about("Compile the script into a self contained executable")
.long_about( .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 -A https://deno.land/std/http/file_server.ts
deno compile --output color_util https://deno.land/std/examples/colors.ts deno compile --output color_util https://deno.land/std/examples/colors.ts
@ -1152,7 +1152,7 @@ supported in canary.
.arg( .arg(
Arg::new("include") Arg::new("include")
.long("include") .long("include")
.help("UNSTABLE: Additional module to include in the module graph") .help("Additional module to include in the module graph")
.long_help( .long_help(
"Includes an additional module in the compiled executable's module "Includes an additional module in the compiled executable's module
graph. Use this flag if a dynamically imported module or a web worker main graph. Use this flag if a dynamically imported module or a web worker main

View file

@ -34,7 +34,7 @@ fn help_output() {
"Bundle module and dependencies into single file", "Bundle module and dependencies into single file",
"Cache the dependencies", "Cache the dependencies",
"Type-check 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", "Generate shell completions",
"Print coverage reports", "Print coverage reports",
"Show documentation for a module", "Show documentation for a module",