1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

fix(lint): erroneous remove await in async (#20235)

Closes #20229
This commit is contained in:
David Sherret 2023-08-22 12:16:35 +02:00 committed by GitHub
parent 6d4a005e41
commit 8649648b43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -1247,9 +1247,9 @@ dependencies = [
[[package]]
name = "deno_lint"
version = "0.50.1"
version = "0.50.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "790851a7216be0460da0ca5b4faeef568b031a4e856a3bd86a8e27cdc3333a9d"
checksum = "53f9885a21010c312e84bc6f276a4c97047c3c734bde5f71cb4a71e8121fbe74"
dependencies = [
"anyhow",
"deno_ast",

View file

@ -51,7 +51,7 @@ deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"]
deno_doc = "=0.65.0"
deno_emit = "=0.26.0"
deno_graph = "=0.52.0"
deno_lint = { version = "=0.50.1", features = ["docs"] }
deno_lint = { version = "=0.50.2", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm.workspace = true
deno_runtime = { workspace = true, features = ["dont_create_runtime_snapshot", "include_js_files_for_snapshotting"] }