diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 12 | ||||
-rw-r--r-- | cli/args/mod.rs | 1 | ||||
-rw-r--r-- | cli/tools/repl/session.rs | 1 |
3 files changed, 8 insertions, 6 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6462d30e0..e3cacb02b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -67,17 +67,17 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposa deno_cache_dir = { workspace = true } deno_config = { workspace = true, features = ["workspace"] } deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } -deno_doc = { version = "=0.141.0", features = ["html", "syntect"] } -deno_emit = "=0.43.0" -deno_graph = { version = "=0.79.0", features = ["tokio_executor"] } -deno_lint = { version = "=0.60.0", features = ["docs"] } +deno_doc = { version = "=0.141.1", features = ["html", "syntect"] } +deno_emit = "=0.43.1" +deno_graph = { version = "=0.80.0", features = ["tokio_executor"] } +deno_lint = { version = "=0.60.1", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "=0.21.4" deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_semver = "=0.5.6" deno_task_shell = "=0.17.0" deno_terminal.workspace = true -eszip = "=0.72.1" +eszip = "=0.72.2" napi_sym.workspace = true async-trait.workspace = true @@ -99,7 +99,7 @@ dotenvy = "0.15.7" dprint-plugin-json = "=0.19.3" dprint-plugin-jupyter = "=0.1.3" dprint-plugin-markdown = "=0.17.1" -dprint-plugin-typescript = "=0.91.1" +dprint-plugin-typescript = "=0.91.3" env_logger = "=0.10.0" fancy-regex = "=0.10.0" faster-hex.workspace = true diff --git a/cli/args/mod.rs b/cli/args/mod.rs index e048b332a..6a8eaa268 100644 --- a/cli/args/mod.rs +++ b/cli/args/mod.rs @@ -198,6 +198,7 @@ pub fn ts_config_to_transpile_and_emit_options( jsx_import_source: options.jsx_import_source, precompile_jsx, precompile_jsx_skip_elements: options.jsx_precompile_skip_elements, + precompile_jsx_dynamic_props: None, transform_jsx, var_decl_imports: false, }, diff --git a/cli/tools/repl/session.rs b/cli/tools/repl/session.rs index f8c670a7f..1fbfae4f3 100644 --- a/cli/tools/repl/session.rs +++ b/cli/tools/repl/session.rs @@ -632,6 +632,7 @@ impl ReplSession { transform_jsx: true, precompile_jsx: false, precompile_jsx_skip_elements: None, + precompile_jsx_dynamic_props: None, jsx_automatic: self.jsx.import_source.is_some(), jsx_development: false, jsx_factory: self.jsx.factory.clone(), |