diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-05-17 16:59:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-17 16:59:35 +0200 |
| commit | d76acfdc17e27b53fc53e6cd3051ff0acaefef42 (patch) | |
| tree | 73a2f9984887f5403682de6100b7059b475ea25d /Cargo.lock | |
| parent | b2ba0c54afe806770a9a556b8e622b3c8c0bb5d1 (diff) | |
fix: base64 encoding of source maps with emojis (#14607)
This commit fixes source maps for files that contain emojis.
This is done by updating "deno_ast" to "0.14.1" for the case
of "--no-check" flag (ie using SWC emit) and by overriding
TSC's default base64 encoder (which turned out to be buggy)
for the type checking case.
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 1cc6904e4..2f81d70e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -811,9 +811,9 @@ dependencies = [ [[package]] name = "deno_ast" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc8868538999df5fae866dfe9841750fb57b45be49b948e173ad6a7023c0428c" +checksum = "f0691d08faa4f1fd9898ecfbe82c32623f89969e92e7b97b5119a18399609d25" dependencies = [ "anyhow", "base64 0.13.0", |
