diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-24 04:56:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 10:56:23 +0200 |
commit | 787e1f0f92e81f025ec0dfdce2acff15900267fc (patch) | |
tree | fb09af5c05639c2e8710637fbef29cecd883e9ec | |
parent | cacc8c9a4debe6a7d32f743ab9b2f636ae51dec1 (diff) |
fix(npm): better handling of optional peer dependencies (#19236)
Has fix for https://github.com/denoland/deno_npm/pull/9
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index aacb76591..ab6801506 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1217,9 +1217,9 @@ dependencies = [ [[package]] name = "deno_npm" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c617e46dc692e6bb77ec5da8d66a048cbd9756d7c1f9272d5d30548a017542e" +checksum = "e9885542e422eb2500f279c2cf9d048a2b306db60df83ec4c34cefe71ae6cc2a" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index b029bb757..e2d2b4199 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ deno_bench_util = { version = "0.99.0", path = "./bench_util" } test_util = { path = "./test_util" } deno_lockfile = "0.14.1" deno_media_type = { version = "0.1.0", features = ["module_specifier"] } -deno_npm = "0.5.0" +deno_npm = "0.5.1" deno_semver = "0.2.1" # exts |