diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-19 11:58:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-19 15:58:21 +0000 |
commit | f6c7c13764a7952b878a2141fdf01ed68d169ea2 (patch) | |
tree | f492ffb2726d63ad8a29c07ca49de069c0afee51 | |
parent | ee2e6933403811d398540e0e8275b2d216546dd8 (diff) |
fix(fmt): was sometimes putting comments in front of commas in parameter lists (#24650)
* https://github.com/dprint/dprint-plugin-typescript/pull/651
-rw-r--r-- | .dprint.json | 4 | ||||
-rw-r--r-- | Cargo.lock | 9 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 8 insertions, 7 deletions
diff --git a/.dprint.json b/.dprint.json index f5c6cb10a..1ab5dfaae 100644 --- a/.dprint.json +++ b/.dprint.json @@ -64,11 +64,11 @@ "third_party" ], "plugins": [ - "https://plugins.dprint.dev/typescript-0.91.1.wasm", + "https://plugins.dprint.dev/typescript-0.91.4.wasm", "https://plugins.dprint.dev/json-0.19.3.wasm", "https://plugins.dprint.dev/markdown-0.17.1.wasm", "https://plugins.dprint.dev/toml-0.6.2.wasm", - "https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7", + "https://plugins.dprint.dev/exec-0.5.0.json@8d9972eee71fa1590e04873540421f3eda7674d0f1aae3d7c788615e7b7413d0", "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.3.0.wasm" ] } diff --git a/Cargo.lock b/Cargo.lock index 57449dbc7..8decacf1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2388,14 +2388,15 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.91.3" +version = "0.91.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fecac09050c0bc7d19a0e47d3ce3cfc2e21780fb30b5081a5042fd49c1b020a2" +checksum = "23c6adeee0b91badb654e52efe670fa1f0c6dcacbabdd519e48c8c749e8ce5cd" dependencies = [ "anyhow", "deno_ast", "dprint-core", "dprint-core-macros", + "dprint-swc-ext", "percent-encoding", "rustc-hash", "serde", @@ -2403,9 +2404,9 @@ dependencies = [ [[package]] name = "dprint-swc-ext" -version = "0.17.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a0d5b63e52434314e3d767c463b1f68c467c31e61d279bc019227016c44e535" +checksum = "2b909f9f9b22a6265839887544dce97b0b8e2b2635abf622f45613deb3de63e0" dependencies = [ "allocator-api2", "bumpalo", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index d9144afff..a06d4f4b9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -99,7 +99,7 @@ dotenvy = "0.15.7" dprint-plugin-json = "=0.19.3" dprint-plugin-jupyter = "=0.1.3" dprint-plugin-markdown = "=0.17.1" -dprint-plugin-typescript = "=0.91.3" +dprint-plugin-typescript = "=0.91.4" env_logger = "=0.10.0" fancy-regex = "=0.10.0" faster-hex.workspace = true |