diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-09-23 19:12:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 02:12:48 +0000 |
commit | 1e261c9756e232b5d8ef1e7a6627f6f03695ab16 (patch) | |
tree | 522fd2101a2ebc96af15387bb64cbb1b418e3756 /cli/Cargo.toml | |
parent | 74e294c8c1873db447af0f02229470f8d78fffdd (diff) |
fix: Update deno_npm to fix `deno install` with crossws (#25837)
Partially addresses https://github.com/denoland/deno/issues/25648.
This allows packages that use `crossws` to be installed with `deno
install`. `crossws` specifies an optional peer dependency on
`uWebSockets`, but `uWebSockets` is not on npm (it is used with `git:`
or `github:` specifiers). Previously we would error on this, now we
don't error on non-existent optional peer dependencies.
Diffstat (limited to 'cli/Cargo.toml')
-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 d1f1dc5d5..a47af07a7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -71,7 +71,7 @@ deno_doc = { version = "0.148.0", features = ["html", "syntect"] } deno_graph = { version = "=0.82.1" } deno_lint = { version = "=0.67.0", features = ["docs"] } deno_lockfile.workspace = true -deno_npm = "=0.25.1" +deno_npm = "=0.25.2" deno_package_json.workspace = true deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_semver.workspace = true |