diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-07-05 19:48:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-05 19:48:24 +0200 |
commit | 334cef06e7778dabe7c9b6c4998f476675281698 (patch) | |
tree | 28e582752357259c39a5984b761f937c92a08efd /cli | |
parent | e0f67098aa067b9784e48874ce3efb0dfce9fd93 (diff) |
chore: upgrade crates (#11284)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 12 | ||||
-rw-r--r-- | cli/tests/unit/console_test.ts | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3e6231652..025369358 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -42,8 +42,8 @@ winres = "0.1.11" [dependencies] deno_core = { version = "0.92.0", path = "../core" } -deno_doc = "0.7.0" -deno_lint = "0.8.0" +deno_doc = "0.8.0" +deno_lint = "0.9.0" deno_runtime = { version = "0.18.1", path = "../runtime" } atty = "0.2.14" @@ -53,8 +53,8 @@ clap = "2.33.3" data-url = "0.1.0" dissimilar = "1.0.2" dprint-plugin-json = "0.12.1" -dprint-plugin-markdown = "0.9.1" -dprint-plugin-typescript = "0.47.0" +dprint-plugin-markdown = "0.9.2" +dprint-plugin-typescript = "0.48.0" encoding_rs = "0.8.28" env_logger = "0.8.3" fancy-regex = "0.5.0" @@ -78,9 +78,9 @@ semver-parser = "0.10.2" serde = { version = "1.0.125", features = ["derive"] } shell-escape = "0.1.5" sourcemap = "6.0.1" -swc_bundler = "0.44.0" +swc_bundler = "0.45.0" swc_common = { version = "0.10.21", features = ["sourcemap"] } -swc_ecmascript = { version = "0.44.0", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] } +swc_ecmascript = { version = "0.45.0", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] } tempfile = "3.2.0" termcolor = "1.1.2" text-size = "1.1.0" diff --git a/cli/tests/unit/console_test.ts b/cli/tests/unit/console_test.ts index 776e3ce2d..268659d98 100644 --- a/cli/tests/unit/console_test.ts +++ b/cli/tests/unit/console_test.ts @@ -344,7 +344,7 @@ unitTest(function consoleTestStringifyCircular(): void { ); assertEquals( stringify({ - [Deno.customInspect]: function () { + [Symbol.for("Deno.customInspect")]: function () { return Deno.inspect(this); }, }), |