diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-07-13 17:27:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 17:27:27 -0400 |
commit | 294b27717c47ff6536cc12dd81241697cf84d72e (patch) | |
tree | 604efda8720040ff6d8ec56ffddef7cf19111345 | |
parent | 0aca3f06904d2582b4f520e0b03b56bb2255c03e (diff) |
feat(fmt): do not add a newline between a template and its tag (#15195)
-rw-r--r-- | .dprint.json | 2 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.dprint.json b/.dprint.json index 50a40555e..fe4573cf2 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 d925a0b4c..52740f274 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 303e1f9aa..41feb09e4 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" |