diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-06 14:40:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-06 14:40:26 +0100 |
commit | d1706c2ac99eb82a937dff1c6a4c861aa24b1210 (patch) | |
tree | bdb517ef7770af12de1cf9be081be560b4ec0870 /runtime/shared.rs | |
parent | bfd5f1598cc462b460791fdfca9bb6c2c69fec9b (diff) |
refactor: split runtime/98_global_scope.js (#21785)
Diffstat (limited to 'runtime/shared.rs')
-rw-r--r-- | runtime/shared.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/shared.rs b/runtime/shared.rs index 7dddbf9ec..692be94b8 100644 --- a/runtime/shared.rs +++ b/runtime/shared.rs @@ -49,7 +49,9 @@ extension!(runtime, "40_tty.js", "41_prompt.js", "90_deno_ns.js", - "98_global_scope.js" + "98_global_scope_shared.js", + "98_global_scope_window.js", + "98_global_scope_worker.js" ], customizer = |ext: &mut Extension| { #[cfg(not(feature = "exclude_runtime_main_js"))] |