summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/Cargo.toml2
-rw-r--r--cli/tests/fmt/expected_fmt_check_tests_dir.out2
-rw-r--r--cli/tests/wasm_streaming.js3
3 files changed, 3 insertions, 4 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index f05865faf..fe475d515 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -46,7 +46,7 @@ base64 = "0.13.0"
byteorder = "1.4.2"
clap = "2.33.3"
dissimilar = "1.0.2"
-dprint-plugin-typescript = "0.40.1"
+dprint-plugin-typescript = "0.40.3"
dprint-plugin-markdown = "0.5.1"
dprint-plugin-json = "0.8.0"
encoding_rs = "0.8.28"
diff --git a/cli/tests/fmt/expected_fmt_check_tests_dir.out b/cli/tests/fmt/expected_fmt_check_tests_dir.out
index fe84cd485..e2dc2b4ae 100644
--- a/cli/tests/fmt/expected_fmt_check_tests_dir.out
+++ b/cli/tests/fmt/expected_fmt_check_tests_dir.out
@@ -1,2 +1,2 @@
[WILDCARD]
-error: Found 7 not formatted files in [WILDCARD] files
+error: Found 6 not formatted files in [WILDCARD] files
diff --git a/cli/tests/wasm_streaming.js b/cli/tests/wasm_streaming.js
index 6c9457325..1933425d7 100644
--- a/cli/tests/wasm_streaming.js
+++ b/cli/tests/wasm_streaming.js
@@ -16,8 +16,7 @@ const bytes = new Uint8Array([
]);
async function main() {
- const wasm = await WebAssembly.instantiateStreaming(bytes, {
- });
+ const wasm = await WebAssembly.instantiateStreaming(bytes, {});
const result = wasm.instance.exports.add(1, 3);
console.log("1 + 3 =", result);