diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-10-25 13:19:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-25 20:19:03 +0000 |
commit | ec968aa5aec068e92fb554fc7192d912bcddb82c (patch) | |
tree | 48e158f24bef5f4ca85cbc5eb5e3a32acccdad7a /cli/Cargo.toml | |
parent | a01edb394d2785b7d37da6435bb37381efc376ea (diff) |
fix(install): cache json exports of JSR packages (#26552)
Fixes https://github.com/denoland/deno/issues/26509.
Ended up being a `deno_graph` bug causing the error to surface. This PR
updates `deno_graph` to pick up the fix and reverts the temporary
workaround that skipped JSON exports.
Diffstat (limited to 'cli/Cargo.toml')
-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 db0248d84..0065a2cbd 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -73,7 +73,7 @@ deno_cache_dir = { workspace = true } deno_config = { version = "=0.37.2", features = ["workspace", "sync"] } deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "0.154.0", default-features = false, features = ["rust", "html", "syntect"] } -deno_graph = { version = "=0.83.3" } +deno_graph = { version = "=0.83.4" } deno_lint = { version = "=0.67.0", features = ["docs"] } deno_lockfile.workspace = true deno_npm.workspace = true |