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 /cli | |
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
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
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" |