From 23bb0abc230bd796e60bb8e22ccc39aef5629158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 18 Oct 2022 14:39:04 +0200 Subject: feat(task): remove warning about being unstable (#16281) `deno task` has been in use for a few months now. It was very well received and there are not many complaints. I feel like this warning might be discouraging for some users and we don't really plan to make drastic changes to it (besides adding support for globs in unspecified future). --- cli/tools/task.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'cli/tools') diff --git a/cli/tools/task.rs b/cli/tools/task.rs index 4b05a37e5..4cbba8661 100644 --- a/cli/tools/task.rs +++ b/cli/tools/task.rs @@ -25,10 +25,6 @@ pub async fn execute_script( flags: Flags, task_flags: TaskFlags, ) -> Result { - log::warn!( - "{} deno task is unstable and may drastically change in the future", - crate::colors::yellow("Warning"), - ); let ps = ProcState::build(flags).await?; let tasks_config = ps.options.resolve_tasks_config()?; let config_file_url = ps.options.maybe_config_file_specifier().unwrap(); -- cgit v1.2.3