chore: upgrade dprint plugins (#10397)

This commit is contained in:
Satya Rohith 2021-04-28 19:38:51 +05:30 committed by GitHub
parent 8c6f977192
commit 2bd087ab1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 349 additions and 360 deletions

View file

@ -35,8 +35,8 @@
"tools/wpt/manifest.json" "tools/wpt/manifest.json"
], ],
"plugins": [ "plugins": [
"https://plugins.dprint.dev/typescript-0.44.0.wasm", "https://plugins.dprint.dev/typescript-0.44.2.wasm",
"https://plugins.dprint.dev/json-0.10.1.wasm", "https://plugins.dprint.dev/json-0.10.2.wasm",
"https://plugins.dprint.dev/markdown-0.7.0.wasm" "https://plugins.dprint.dev/markdown-0.7.1.wasm"
] ]
} }

33
Cargo.lock generated
View file

@ -823,20 +823,9 @@ dependencies = [
[[package]] [[package]]
name = "dprint-core" name = "dprint-core"
version = "0.35.3" version = "0.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93bd44f40b1881477837edc7112695d4b174f058c36c1cbc4c50f8d0482e2ac8" checksum = "a9eef318dc38909f86fa9723ae9b2fd564554bd8115acbf6f67b89bb9d4101da"
dependencies = [
"bumpalo",
"fnv",
"serde",
]
[[package]]
name = "dprint-core"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1573a8cdbb2fce7f180099a74a0252288a13d7169a9dd43f0f0ff9448a1b1f4e"
dependencies = [ dependencies = [
"bumpalo", "bumpalo",
"fnv", "fnv",
@ -845,22 +834,22 @@ dependencies = [
[[package]] [[package]]
name = "dprint-plugin-json" name = "dprint-plugin-json"
version = "0.10.1" version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "192d9caba72e0955a19026d139a4e412f9be3b0ba0712f1f584f2cf6e391f472" checksum = "7c68efe8956dface56c5a37120711d076a03c8be02617010d53afd00e46f445d"
dependencies = [ dependencies = [
"dprint-core 0.35.3", "dprint-core",
"jsonc-parser", "jsonc-parser",
"serde", "serde",
] ]
[[package]] [[package]]
name = "dprint-plugin-markdown" name = "dprint-plugin-markdown"
version = "0.7.0" version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86b08578cbf2afef06f8144db2be7a50a9bcf948a7ec7eae42e936386534af82" checksum = "03143dc4349c85a344418d64d70e9d6cd34cadf6cc720b11f8e85a63f0448916"
dependencies = [ dependencies = [
"dprint-core 0.35.3", "dprint-core",
"pulldown-cmark", "pulldown-cmark",
"regex", "regex",
"serde", "serde",
@ -868,11 +857,11 @@ dependencies = [
[[package]] [[package]]
name = "dprint-plugin-typescript" name = "dprint-plugin-typescript"
version = "0.44.1" version = "0.44.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8008a8a2abd9c476e942bf27ab80719aaeb2cce24eca6815b204fabf7acf7e6" checksum = "a39c58ac72b4233e4dcbac562e9311e85730b457b24c3980d72d762cc76569b4"
dependencies = [ dependencies = [
"dprint-core 0.37.0", "dprint-core",
"dprint-swc-ecma-ast-view 0.15.0", "dprint-swc-ecma-ast-view 0.15.0",
"fnv", "fnv",
"serde", "serde",

View file

@ -41,9 +41,9 @@ byteorder = "1.4.3"
clap = "2.33.3" clap = "2.33.3"
data-url = "0.1.0" data-url = "0.1.0"
dissimilar = "1.0.2" dissimilar = "1.0.2"
dprint-plugin-json = "0.10.1" dprint-plugin-json = "0.10.2"
dprint-plugin-markdown = "0.7.0" dprint-plugin-markdown = "0.7.1"
dprint-plugin-typescript = "0.44.0" dprint-plugin-typescript = "0.44.2"
encoding_rs = "0.8.28" encoding_rs = "0.8.28"
env_logger = "0.8.3" env_logger = "0.8.3"
fancy-regex = "0.5.0" fancy-regex = "0.5.0"