1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

fix(publish): infer literal types in const contexts (#27425)

* https://github.com/denoland/deno_graph/pull/555
This commit is contained in:
David Sherret 2024-12-19 13:53:33 -05:00 committed by GitHub
parent 351e79642a
commit 3c147d6be1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

5
Cargo.lock generated
View file

@ -1718,12 +1718,13 @@ dependencies = [
[[package]]
name = "deno_graph"
version = "0.86.3"
version = "0.86.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc78ed0b4bbcb4197300f0d6e7d1edc2d2c5019cdb9dedba7ff229158441885b"
checksum = "f8502f5dd37f522c76e92961ec6e855f40bc351d50d62bc0752cc19517eed8ec"
dependencies = [
"anyhow",
"async-trait",
"capacity_builder",
"data-url",
"deno_ast",
"deno_semver",

View file

@ -74,7 +74,7 @@ deno_config.workspace = true
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_doc = { version = "=0.161.3", features = ["rust", "comrak"] }
deno_error.workspace = true
deno_graph = { version = "=0.86.3" }
deno_graph = { version = "=0.86.4" }
deno_lint = { version = "=0.68.2", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm.workspace = true