summaryrefslogtreecommitdiff
path: root/cli/tools/repl
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-07-10 14:51:55 +0100
committerGitHub <noreply@github.com>2024-07-10 13:51:55 +0000
commit8b34c4d75b3f9ae27380e30c7d192fe55e40196b (patch)
tree37702478197ea787c9800a4e49fa6465e2692531 /cli/tools/repl
parent82f9216610ec9cc32697ca77cb95da4b229117d4 (diff)
fix: memory leak when transpiling (#24490)
This commit fixes memory leak described in https://github.com/denoland/deno/issues/24380. This is done by upgrading following crates: - deno_ast - deno_graph - eszip - dprint-plugin-typescript - deno_lint - deno_doc - deno_emit
Diffstat (limited to 'cli/tools/repl')
-rw-r--r--cli/tools/repl/session.rs1
1 files changed, 1 insertions, 0 deletions
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(),