diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-28 18:06:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-29 00:06:16 +0100 |
| commit | 814eb420608b21d3d79d3580317d2e803d240589 (patch) | |
| tree | 376febdb385d56dd220148558d49dfe099e8e4f9 /cli | |
| parent | b6e44f91ad55f9737d65a4832d10cfa608f27c41 (diff) | |
fix: relative dynamic imports in jsr packages (#22624)
Relative dynamic imports were broken. It now properly allows them and
verifies the checksum.
Fix in https://github.com/denoland/deno_graph/pull/408
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 494658bb8..b0b87c7b7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -68,7 +68,7 @@ deno_config = "=0.12.0" deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "=0.113.1", features = ["html"] } deno_emit = "=0.38.2" -deno_graph = { version = "=0.69.5", features = ["tokio_executor"] } +deno_graph = { version = "=0.69.6", features = ["tokio_executor"] } deno_lint = { version = "=0.57.1", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "=0.17.0" |
