diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 10 | ||||
-rw-r--r-- | cli/ast.rs | 1 |
2 files changed, 6 insertions, 5 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 65f455215..16dc7d9d5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -32,8 +32,8 @@ winapi = "0.3.9" [dependencies] deno_core = { path = "../core", version = "0.73.0" } -deno_doc = "0.1.18" -deno_lint = "0.2.13" +deno_doc = "0.1.19" +deno_lint = "0.2.14" deno_runtime = { path = "../runtime", version = "0.3.0" } atty = "0.2.14" @@ -41,7 +41,7 @@ base64 = "0.12.3" byteorder = "1.3.4" clap = "2.33.3" dissimilar = "1.0.2" -dprint-plugin-typescript = "0.35.1" +dprint-plugin-typescript = "0.36.0" encoding_rs = "0.8.24" env_logger = "0.7.1" filetime = "0.2.12" @@ -62,9 +62,9 @@ semver-parser = "0.9.0" serde = { version = "1.0.116", features = ["derive"] } shell-escape = "0.1.5" sourcemap = "6.0.1" -swc_bundler = "0.17.6" +swc_bundler = "0.18.0" swc_common = { version = "0.10.7", features = ["sourcemap"] } -swc_ecmascript = { version = "0.15.1", features = ["codegen", "dep_graph", "parser", "react", "transforms", "visit"] } +swc_ecmascript = { version = "0.16.0", features = ["codegen", "dep_graph", "parser", "react", "transforms", "visit"] } tempfile = "3.1.0" termcolor = "1.1.0" tokio = { version = "0.2.22", features = ["full"] } diff --git a/cli/ast.rs b/cli/ast.rs index 255155e7b..d4837bb6f 100644 --- a/cli/ast.rs +++ b/cli/ast.rs @@ -556,6 +556,7 @@ impl swc_bundler::Hook for BundleHook { value: Box::new(ast::Expr::Lit(ast::Lit::Str(ast::Str { span, value: value.into(), + kind: ast::StrKind::Synthesized, has_escape: false, }))), }, |