From 0f1349bca8d40dff23098e141363c956a8dd7875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 14 Feb 2023 02:13:44 +0100 Subject: feat: Deprecate 'deno bundle' subcommand (#17695) This commit adds a deprecation warning when using "deno bundle" subcommand and removes it from the output of "deno help". --- cli/args/flags.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/args') diff --git a/cli/args/flags.rs b/cli/args/flags.rs index ee8ec2563..21a940dc5 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -767,6 +767,7 @@ glob {*_,*.,}bench.{js,mjs,ts,mts,jsx,tsx}: fn bundle_subcommand<'a>() -> Command<'a> { compile_args(Command::new("bundle")) + .hide(true) .arg( Arg::new("source_file") .takes_value(true) -- cgit v1.2.3