diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-05-12 18:19:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-12 22:19:04 +0000 |
commit | 2b62a5b8140f884c35a4e1ae732a9de3dd8c6114 (patch) | |
tree | efdb3de80a63659daf3c5d010e32e0a811f4c21b /cli | |
parent | dac49a116e094be1a3048305dfb6b10bbddcc030 (diff) |
fix(npm): handle null fields in npm registry JSON (#23785)
* https://github.com/denoland/deno_npm/pull/52
Closes https://github.com/denoland/deno/issues/23776
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c15538408..8359c4096 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -67,17 +67,17 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposa deno_cache_dir = { workspace = true } deno_config = "=0.16.3" deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } -deno_doc = { version = "=0.129.0", features = ["html", "syntect"] } +deno_doc = { version = "=0.133.0", features = ["html", "syntect"] } deno_emit = "=0.40.2" deno_graph = { version = "=0.74.5", features = ["tokio_executor"] } deno_lint = { version = "=0.58.4", features = ["docs"] } deno_lockfile.workspace = true -deno_npm = "=0.18.0" +deno_npm = "=0.20.1" deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_semver = "=0.5.4" deno_task_shell = "=0.16.1" deno_terminal.workspace = true -eszip = "=0.68.2" +eszip = "=0.68.4" napi_sym.workspace = true async-trait.workspace = true |