diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-04-13 22:20:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-13 22:20:58 -0400 |
commit | 76df7d7c9bb7b6b552fd33efbedb28e21969d46c (patch) | |
tree | 7b59b590acfc6092ea1d53f961afa11fc2cac110 | |
parent | 1fadb940f41f4f9f78e616c90008a31a44dc28bc (diff) |
fix(publish): do not error for param with initializer before required parameter (#23356)
* https://github.com/denoland/deno_graph/pull/440
Closes https://github.com/denoland/deno/issues/23331
-rw-r--r-- | Cargo.lock | 9 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 7 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index c14b36e48..b449f1a28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1165,9 +1165,9 @@ dependencies = [ [[package]] name = "deno_ast" -version = "0.36.1" +version = "0.36.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff757b9a40f67682e34c2806a2d5a0331449acad467ab53e783cad8092675e50" +checksum = "da1e05031ec63082cd9eaf103bee347120bf58cf8de5c880ab4c732b661c335f" dependencies = [ "anyhow", "base64", @@ -1202,6 +1202,7 @@ dependencies = [ "swc_visit", "swc_visit_macros", "text_lines", + "thiserror", "unicode-width", "url", ] @@ -1475,9 +1476,9 @@ dependencies = [ [[package]] name = "deno_graph" -version = "0.71.3" +version = "0.71.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cabf5260490373a0486862fc6edd87fe378e00c91d98ff94e2e7804e6ce6eff9" +checksum = "89621fa4d9b33f67e7a390e07e300ac0979b9817921d63f1a5056d51e2ae932a" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 60b8f117d..374707265 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ license = "MIT" repository = "https://github.com/denoland/deno" [workspace.dependencies] -deno_ast = { version = "0.36.1", features = ["transpiling"] } +deno_ast = { version = "=0.36.2", features = ["transpiling"] } deno_core = { version = "0.274.0" } deno_bench_util = { version = "0.140.0", path = "./bench_util" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e208e07fc..b35d475ef 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -68,7 +68,7 @@ deno_config = "=0.15.0" deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "=0.123.1", features = ["html"] } deno_emit = "=0.39.0" -deno_graph = { version = "=0.71.3", features = ["tokio_executor"] } +deno_graph = { version = "=0.71.5", features = ["tokio_executor"] } deno_lint = { version = "=0.58.2", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "=0.17.0" |