diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-17 09:13:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-17 09:13:22 -0400 |
| commit | f4b9d8586215fc07c28998e5d896fefa876139b7 (patch) | |
| tree | 9ee42eb4bb62af04b1c3b049cd179dfa6fe908bb /Cargo.lock | |
| parent | 078def0ff8501bb07f3f286515acd8c6a2181037 (diff) | |
fix(workspace): support resolving bare specifiers to npm pkgs within a workspace (#24611)
This makes bare specifiers for npm packages work when inside a
workspace, which emulates the same behaviour as when there's a
node_modules directory. The bare specifier can be overwritten by
specifying an import map entry or package.json dependency entry.
* https://github.com/denoland/deno_config/pull/88
Closes #24605
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index fc8714156..4bf79e1fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1308,9 +1308,9 @@ dependencies = [ [[package]] name = "deno_config" -version = "0.22.2" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83df0c14d89f4e6e7ff91bfea0b4d5a0a33b4385c517ff4d8b4236d9834561e3" +checksum = "90684d387a893a3318569b8bb548e2f9291f86f2909f5349dd9d2b97c83fdb18" dependencies = [ "anyhow", "deno_semver", |
