From e06934fe77cb7991fc2c767f221577a2e96506a7 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 16 Feb 2024 09:19:24 -0500 Subject: [PATCH] fix(fmt): remove debug output when formatting dynamic imports (#22433) deno fmt sometimes had stuff like: ``` NODE: Evaluation ``` ...in the output. --- .dprint.json | 2 +- Cargo.lock | 4 ++-- cli/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.dprint.json b/.dprint.json index 82948ac682..934f136698 100644 --- a/.dprint.json +++ b/.dprint.json @@ -56,7 +56,7 @@ "ext/websocket/autobahn/reports" ], "plugins": [ - "https://plugins.dprint.dev/typescript-0.89.0.wasm", + "https://plugins.dprint.dev/typescript-0.89.1.wasm", "https://plugins.dprint.dev/json-0.19.1.wasm", "https://plugins.dprint.dev/markdown-0.16.3.wasm", "https://plugins.dprint.dev/toml-0.6.0.wasm", diff --git a/Cargo.lock b/Cargo.lock index 89cc00b2d4..9e928a491d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2202,9 +2202,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.89.0" +version = "0.89.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dedd02b402282e71c309aa3e1e27bc8557517c968effe52783cdeeafdd17cc2" +checksum = "6199631b4ff3462c4a0bd90dbecf73265e92eea9eb64c4671e7ddbf0ac0d1ec0" dependencies = [ "anyhow", "deno_ast", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3898fb7bb9..3499677084 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`.