diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-10-18 14:39:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 14:39:04 +0200 |
commit | 23bb0abc230bd796e60bb8e22ccc39aef5629158 (patch) | |
tree | 022f96b60fffce64b0ba8e9d4b2b565d7859b0b5 /cli/tools/task.rs | |
parent | 6fbd95630a7cf04de5e1179b3d41f8f769fa897c (diff) |
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).
Diffstat (limited to 'cli/tools/task.rs')
-rw-r--r-- | cli/tools/task.rs | 4 |
1 files changed, 0 insertions, 4 deletions
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<i32, AnyError> { - 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(); |