From 4c0b66baab854617993cb242e3be8fe91fb9b0fc Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Wed, 24 Jan 2024 12:36:51 +1100 Subject: refactor: set removal version for `deno bundle` (#22062) This change sets the removal version for the `deno bundle` sub-command for Deno v2. The warnings appear when `deno bundle` is run and in the `--help` menu. --- cli/args/flags.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'cli/args') diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 8bb29e72d..ae63b710c 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -1169,7 +1169,10 @@ fn bundle_subcommand() -> Command { Command::new("bundle") .about("Bundle module and dependencies into single file") .long_about( - "Output a single JavaScript file with all dependencies. + "⚠️ Warning: `deno bundle` is deprecated and will be removed in Deno 2.0. +Use an alternative bundler like \"deno_emit\", \"esbuild\" or \"rollup\" instead. + +Output a single JavaScript file with all dependencies. deno bundle https://deno.land/std/http/file_server.ts file_server.bundle.js -- cgit v1.2.3