From 1e261c9756e232b5d8ef1e7a6627f6f03695ab16 Mon Sep 17 00:00:00 2001 From: Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> Date: Mon, 23 Sep 2024 19:12:48 -0700 Subject: 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. --- tests/registry/npm/@denotest/non-existent-optional-peer/1.0.0/index.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/registry/npm/@denotest/non-existent-optional-peer/1.0.0/index.js (limited to 'tests/registry/npm/@denotest/non-existent-optional-peer/1.0.0/index.js') diff --git a/tests/registry/npm/@denotest/non-existent-optional-peer/1.0.0/index.js b/tests/registry/npm/@denotest/non-existent-optional-peer/1.0.0/index.js new file mode 100644 index 000000000..e69de29bb -- cgit v1.2.3