fix(npm): root package has peer dependency on itself (#26022)

https://github.com/denoland/deno_npm/pull/70

Fixes https://github.com/denoland/deno/issues/26006
This commit is contained in:
Divy Srivastava 2024-10-03 19:48:36 +05:30 committed by GitHub
parent 91860b34f5
commit e41df20ad9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -1899,9 +1899,9 @@ dependencies = [
[[package]]
name = "deno_npm"
version = "0.25.2"
version = "0.25.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1809e2d77d8a06bc2800dc10c1d4acb664197e518e289a86e336411c1feba785"
checksum = "8050bcc2513046cbc0134ae1bc0f3b251a58b95012f3b81e0ea09a7f069c301b"
dependencies = [
"anyhow",
"async-trait",

View File

@ -51,7 +51,7 @@ deno_core = { version = "0.311.0" }
deno_bench_util = { version = "0.164.0", path = "./bench_util" }
deno_lockfile = "=0.23.1"
deno_media_type = { version = "0.1.4", features = ["module_specifier"] }
deno_npm = "=0.25.2"
deno_npm = "=0.25.3"
deno_path_util = "=0.2.0"
deno_permissions = { version = "0.30.0", path = "./runtime/permissions" }
deno_runtime = { version = "0.179.0", path = "./runtime" }