1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix: don't include source maps in release mode (#22751)

Due to bug in `deno_ast` the `source_map` setting is ignored and source
map is always emitted. This is fixed by updating `deno_ast`.
This commit is contained in:
Bartek Iwańczuk 2024-03-06 22:53:02 +00:00 committed by GitHub
parent 7f3162c57e
commit 6b48aff8fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
Cargo.lock generated
View file

@ -1127,9 +1127,9 @@ dependencies = [
[[package]]
name = "deno_ast"
version = "0.34.1"
version = "0.34.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a73fa2b215c93d44b55228a6c69aa92ffa200cfa683ebaf45202ecfbd749bf52"
checksum = "58d986a1df3f1538ffa04162b5c5f00b856121391b860dc003bde2a6a741e878"
dependencies = [
"anyhow",
"base64",
@ -7276,7 +7276,7 @@ dependencies = [
"codespan-reporting",
"log",
"naga",
"parking_lot 0.12.1",
"parking_lot 0.11.2",
"profiling",
"raw-window-handle",
"ron",
@ -7317,7 +7317,7 @@ dependencies = [
"naga",
"objc",
"once_cell",
"parking_lot 0.12.1",
"parking_lot 0.11.2",
"profiling",
"range-alloc",
"raw-window-handle",