diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 2 | ||||
-rw-r--r-- | cli/tests/integration/run_tests.rs | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index cb52d3966..7fe471dbe 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -65,7 +65,7 @@ deno_config = "=0.9.2" deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "=0.103.0", features = ["html"] } deno_emit = "=0.36.0" -deno_graph = "=0.65.0" +deno_graph = "=0.65.1" deno_lint = { version = "=0.56.0", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "=0.16.0" diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 428de3238..298ce1715 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -1051,6 +1051,9 @@ fn lock_deno_json_package_json_deps() { "jsr:@denotest/module_graph@1.4": "jsr:@denotest/module_graph@1.4.0", "npm:@denotest/esm-basic": "npm:@denotest/esm-basic@1.0.0" }, + "jsr": { + "@denotest/module_graph@1.4.0": {} + }, "npm": { "@denotest/esm-basic@1.0.0": { "integrity": esm_basic_integrity, @@ -1101,6 +1104,9 @@ fn lock_deno_json_package_json_deps() { "jsr:@denotest/module_graph@1.4": "jsr:@denotest/module_graph@1.4.0", "npm:@denotest/esm-basic": "npm:@denotest/esm-basic@1.0.0" }, + "jsr": { + "@denotest/module_graph@1.4.0": {} + }, "npm": { "@denotest/esm-basic@1.0.0": { "integrity": esm_basic_integrity, @@ -1138,6 +1144,9 @@ fn lock_deno_json_package_json_deps() { "packages": { "specifiers": { "jsr:@denotest/module_graph@1.4": "jsr:@denotest/module_graph@1.4.0", + }, + "jsr": { + "@denotest/module_graph@1.4.0": {} } }, "remote": { |