From 403da30cebe7caba11ba96a76a3534eebf6c8deb Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 15 Oct 2024 14:48:33 -0400 Subject: [PATCH] fix(install): handle pkg with dep on self when pkg part of peer dep resolution (#26277) * https://github.com/denoland/deno_npm/pull/71 Closes #26271 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index da415dcf72..6e47123886 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1903,9 +1903,9 @@ dependencies = [ [[package]] name = "deno_npm" -version = "0.25.3" +version = "0.25.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8050bcc2513046cbc0134ae1bc0f3b251a58b95012f3b81e0ea09a7f069c301b" +checksum = "e6b4dc4a9f1cff63d5638e7d93042f24f46300d1cc77b86f3caaa699a7ddccf7" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 502b7b7d76..e83d4239ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ deno_core = { version = "0.313.0" } deno_bench_util = { version = "0.165.0", path = "./bench_util" } deno_lockfile = "=0.23.1" deno_media_type = { version = "0.1.4", features = ["module_specifier"] } -deno_npm = "=0.25.3" +deno_npm = "=0.25.4" deno_path_util = "=0.2.1" deno_permissions = { version = "0.31.0", path = "./runtime/permissions" } deno_runtime = { version = "0.180.0", path = "./runtime" }