summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.dprint.json6
-rw-r--r--Cargo.lock4
-rw-r--r--cli/Cargo.toml2
-rw-r--r--cli/tests/046_jsx_test.tsx4
-rw-r--r--cli/tests/047_jsx_test.jsx4
-rw-r--r--cli/tests/module_graph/https_deno.land-x-transpile.tsx2
6 files changed, 9 insertions, 13 deletions
diff --git a/.dprint.json b/.dprint.json
index 9b375be11..aaf191b77 100644
--- a/.dprint.json
+++ b/.dprint.json
@@ -35,9 +35,9 @@
"tools/wpt/manifest.json"
],
"plugins": [
- "https://plugins.dprint.dev/typescript-0.47.0.wasm",
+ "https://plugins.dprint.dev/typescript-0.50.0.wasm",
"https://plugins.dprint.dev/json-0.12.1.wasm",
- "https://plugins.dprint.dev/markdown-0.9.1.wasm",
- "https://plugins.dprint.dev/toml-0.4.0.wasm"
+ "https://plugins.dprint.dev/markdown-0.9.2.wasm",
+ "https://plugins.dprint.dev/toml-0.4.1.wasm"
]
}
diff --git a/Cargo.lock b/Cargo.lock
index 389ecd46a..5f7c6f5e5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -971,9 +971,9 @@ dependencies = [
[[package]]
name = "dprint-plugin-typescript"
-version = "0.49.0"
+version = "0.50.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "905ce2026766bc341bf489819b6ed31973e52f66b285f7f2dcb5040582b765ca"
+checksum = "8edb35478b903fe9d38c7d4f5d1508aa1b51d29d05999c90cdd2b1d50841c2e2"
dependencies = [
"dprint-core",
"dprint-swc-ecma-ast-view",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 6efe071a7..c74b2980e 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -55,7 +55,7 @@ data-url = "0.1.0"
dissimilar = "1.0.2"
dprint-plugin-json = "0.12.1"
dprint-plugin-markdown = "0.9.2"
-dprint-plugin-typescript = "0.49.0"
+dprint-plugin-typescript = "0.50.0"
encoding_rs = "0.8.28"
env_logger = "0.8.4"
fancy-regex = "0.5.0"
diff --git a/cli/tests/046_jsx_test.tsx b/cli/tests/046_jsx_test.tsx
index 857d24d36..a96e90baf 100644
--- a/cli/tests/046_jsx_test.tsx
+++ b/cli/tests/046_jsx_test.tsx
@@ -8,7 +8,5 @@ const React = {
return { factory, props, children };
},
};
-const View = () => (
- <div class="deno">land</div>
-);
+const View = () => <div class="deno">land</div>;
console.log(<View />);
diff --git a/cli/tests/047_jsx_test.jsx b/cli/tests/047_jsx_test.jsx
index 61bd7e36c..4c2314072 100644
--- a/cli/tests/047_jsx_test.jsx
+++ b/cli/tests/047_jsx_test.jsx
@@ -3,7 +3,5 @@ const React = {
return { factory, props, children };
},
};
-const View = () => (
- <div class="deno">land</div>
-);
+const View = () => <div class="deno">land</div>;
console.log(<View />);
diff --git a/cli/tests/module_graph/https_deno.land-x-transpile.tsx b/cli/tests/module_graph/https_deno.land-x-transpile.tsx
index 23167d2ff..02955bad8 100644
--- a/cli/tests/module_graph/https_deno.land-x-transpile.tsx
+++ b/cli/tests/module_graph/https_deno.land-x-transpile.tsx
@@ -1,5 +1,5 @@
export default class A {
render() {
- return (<div>Hello world!</div>);
+ return <div>Hello world!</div>;
}
}