From e6ff84c9f90c7d151a7219ac6fa22d88ac2934fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 28 Oct 2023 03:54:52 +0200 Subject: chore: Remove 'UNSTABLE:' from 'deno compile' help (#21003) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bartek IwaƄczuk --- cli/args/flags.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli/args') diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 588f75dbb..6e8b00cab 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -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 @@ -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 -- cgit v1.2.3