diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-03-06 22:53:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 22:53:02 +0000 |
commit | 6b48aff8fb639a798c8b1a044a3dd7caad433c48 (patch) | |
tree | b212428febb0c08a5dd242aad8401ec9795c7ef9 | |
parent | 7f3162c57e5caac97a77bafa1b2690a55eb060a5 (diff) |
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`.
-rw-r--r-- | Cargo.lock | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 2faf17d44..50cc8e23a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", |