From 294b27717c47ff6536cc12dd81241697cf84d72e Mon Sep 17 00:00:00 2001 From: David Sherret Date: Wed, 13 Jul 2022 17:27:27 -0400 Subject: [PATCH] feat(fmt): do not add a newline between a template and its tag (#15195) --- .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 50a40555e6..fe4573cf29 100644 --- a/.dprint.json +++ b/.dprint.json @@ -46,7 +46,7 @@ "tools/wpt/manifest.json" ], "plugins": [ - "https://plugins.dprint.dev/typescript-0.69.5.wasm", + "https://plugins.dprint.dev/typescript-0.70.0.wasm", "https://plugins.dprint.dev/json-0.15.3.wasm", "https://plugins.dprint.dev/markdown-0.13.3.wasm", "https://plugins.dprint.dev/toml-0.5.4.wasm", diff --git a/Cargo.lock b/Cargo.lock index d925a0b4c2..52740f2745 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1388,9 +1388,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.69.6" +version = "0.70.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b71449427ac9087807c1060b418b9127e734ebdd2a254822e8ca4fe8c5d3829" +checksum = "8615057f4eb72345350d10b6289cb320ff844255a1c2877e0a3692d2bb93f436" dependencies = [ "anyhow", "deno_ast", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 303e1f9aaa..41feb09e4c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -65,7 +65,7 @@ data-url = "=0.1.1" dissimilar = "=1.0.3" dprint-plugin-json = "=0.15.3" dprint-plugin-markdown = "=0.13.3" -dprint-plugin-typescript = "=0.69.6" +dprint-plugin-typescript = "=0.70.0" encoding_rs = "=0.8.31" env_logger = "=0.9.0" eszip = "=0.22.0"