diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-10-25 21:14:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 21:14:08 -0400 |
commit | 4d166e638f387db45d9ae1fe967db6a18ff7cc03 (patch) | |
tree | ea5ff7e06002340e8b1d2efdd2912f7484d67d60 | |
parent | ab0c33ebf83f25b526f732e3e07de5e75a6e69bb (diff) |
feat(task): support `sleep` suffixes (#16425)
Co-authored-by: sigmaSd <sigmasd@users.noreply.github.com>
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 571966dc1..367c93382 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1226,9 +1226,9 @@ dependencies = [ [[package]] name = "deno_task_shell" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e4e1c86712e2cded9046ac6748cbe5dba87042f045265a51b1ac2629a7fa6c5" +checksum = "a275d3f78e828b4adddf20a472d9ac1927ac311aac48dca869bb8653d5a4a0b9" dependencies = [ "anyhow", "futures", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 79f9b8876..0ca266702 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -57,7 +57,7 @@ deno_emit = "0.10.0" deno_graph = "0.37.1" deno_lint = { version = "0.34.0", features = ["docs"] } deno_runtime = { version = "0.81.0", path = "../runtime" } -deno_task_shell = "0.6.0" +deno_task_shell = "0.7.0" napi_sym = { path = "./napi_sym", version = "0.3.0" } atty = "=0.2.14" |