fix(workspace): diagnostic for imports in member with importMap at root (#28116)

Closes https://github.com/denoland/deno/issues/28110
This commit is contained in:
David Sherret 2025-02-14 12:04:25 +01:00 committed by GitHub
parent 02ded3b1f6
commit c08a4b61ac
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

@ -1599,9 +1599,9 @@ dependencies = [
[[package]]
name = "deno_config"
version = "0.46.0"
version = "0.48.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08fe512a72c4300bd997c6849450a1f050da0c909a2a4fbdc44891647392bacf"
checksum = "7f8dbb5b5f3ca2f57e9db3ecb67cbd7eba9a3fd619e98516ee1d0d3732e84361"
dependencies = [
"boxed_error",
"capacity_builder 0.5.0",

View file

@ -54,7 +54,7 @@ deno_ast = { version = "=0.44.0", features = ["transpiling"] }
deno_core = { version = "0.336.0" }
deno_bench_util = { version = "0.184.0", path = "./bench_util" }
deno_config = { version = "=0.46.0", features = ["workspace"] }
deno_config = { version = "=0.48.1", features = ["workspace"] }
deno_lockfile = "=0.24.0"
deno_media_type = { version = "=0.2.5", features = ["module_specifier"] }
deno_npm = "=0.27.2"