diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-16 09:19:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 14:19:24 +0000 |
commit | e06934fe77cb7991fc2c767f221577a2e96506a7 (patch) | |
tree | fa472b7208ce9b067489d9c899e53a29d16671d0 /cli | |
parent | 5596de8081970a6fa811b95e60a27dca071a714e (diff) |
fix(fmt): remove debug output when formatting dynamic imports (#22433)
deno fmt sometimes had stuff like:
```
NODE: Evaluation
```
...in the output.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3898fb7bb..349967708 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -98,7 +98,7 @@ dotenvy = "0.15.7" dprint-plugin-json = "=0.19.1" dprint-plugin-jupyter = "=0.1.2" dprint-plugin-markdown = "=0.16.3" -dprint-plugin-typescript = "=0.89.0" +dprint-plugin-typescript = "=0.89.1" env_logger = "=0.10.0" fancy-regex = "=0.10.0" # If you disable the default __vendored_zlib_ng feature above, you _must_ be able to link against `-lz`. |