From bf804d3ffff39dab3c7fc8a1a91538ec51276223 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 18 Apr 2022 14:32:16 -0400 Subject: [PATCH] fix(fmt): regression where some short if stmt headers being split on multiple lines (#14292) Closes #14291 --- .dprint.json | 2 +- Cargo.lock | 8 ++++---- cli/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.dprint.json b/.dprint.json index fb7786f371..e7ac470633 100644 --- a/.dprint.json +++ b/.dprint.json @@ -45,7 +45,7 @@ "tools/wpt/manifest.json" ], "plugins": [ - "https://plugins.dprint.dev/typescript-0.67.0.wasm", + "https://plugins.dprint.dev/typescript-0.67.1.wasm", "https://plugins.dprint.dev/json-0.15.1.wasm", "https://plugins.dprint.dev/markdown-0.13.1.wasm", "https://plugins.dprint.dev/toml-0.5.4.wasm", diff --git a/Cargo.lock b/Cargo.lock index 83e19afab0..abb3203551 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1254,9 +1254,9 @@ dependencies = [ [[package]] name = "dprint-core" -version = "0.55.2" +version = "0.55.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0949cebae991e4215da705feb1836239c0cad68dec02108588eec3148320f5d" +checksum = "1741a00ab79da9edf86cdecf63399321eba60b5b9a301b3c99fbba1744fdc050" dependencies = [ "anyhow", "bumpalo", @@ -1293,9 +1293,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.67.0" +version = "0.67.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d487fc7a7c525276ab86e0069cf0533ee53b1947e98a954f8d65638c059cd9ea" +checksum = "6929da48aa12ba4bfc42d6f4e134b1d73fb31ff662c9938e9dafae4063000e66" dependencies = [ "anyhow", "deno_ast", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ed0885c0e3..826f16dda6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -64,7 +64,7 @@ data-url = "=0.1.1" dissimilar = "=1.0.2" dprint-plugin-json = "=0.15.1" dprint-plugin-markdown = "=0.13.1" -dprint-plugin-typescript = "=0.67.0" +dprint-plugin-typescript = "=0.67.1" encoding_rs = "=0.8.29" env_logger = "=0.8.4" eszip = "=0.19.0"