diff options
Diffstat (limited to 'cli/tools/bundle.rs')
-rw-r--r-- | cli/tools/bundle.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cli/tools/bundle.rs b/cli/tools/bundle.rs index c70392419..0e54e59f6 100644 --- a/cli/tools/bundle.rs +++ b/cli/tools/bundle.rs @@ -21,11 +21,8 @@ pub async fn bundle( bundle_flags: BundleFlags, ) -> Result<(), AnyError> { log::info!( - "{} \"deno bundle\" is deprecated and will be removed in the future.", - colors::yellow("Warning"), - ); - log::info!( - "Use alternative bundlers like \"deno_emit\", \"esbuild\" or \"rollup\" instead." + "{}", + colors::yellow("⚠️ Warning: `deno bundle` is deprecated and will be removed in Deno 2.0.\nUse an alternative bundler like \"deno_emit\", \"esbuild\" or \"rollup\" instead."), ); if let Some(watch_flags) = &bundle_flags.watch { |