diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-11-01 19:04:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 23:04:54 +0000 |
commit | 58d543a480463ed24de77ec155f1d7e87bb7b234 (patch) | |
tree | effd93acd92a5bfe2a3422ecc30c3119d61bca14 /cli/factory.rs | |
parent | ab72019a17ccc077384c37eaeae15fffc9ce4d92 (diff) |
fix(repl): jsxImportSource was not working (#21049)
I made some fixes in deno_ast to make this possible and we forgot to
update this.
Diffstat (limited to 'cli/factory.rs')
-rw-r--r-- | cli/factory.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/factory.rs b/cli/factory.rs index 06c9472fa..037ba4e2f 100644 --- a/cli/factory.rs +++ b/cli/factory.rs @@ -392,7 +392,7 @@ impl CliFactory { maybe_vendor_dir: self.options.vendor_dir_path(), bare_node_builtins_enabled: self .options - .unstable_bare_node_builtlins(), + .unstable_bare_node_builtins(), }))) }) .await |