1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(fmt): regression where some short if stmt headers being split on multiple lines (#14292)

Closes #14291
This commit is contained in:
David Sherret 2022-04-18 14:32:16 -04:00 committed by GitHub
parent 2f29673fb2
commit bf804d3fff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -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",

8
Cargo.lock generated
View file

@ -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",

View file

@ -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"