diff options
author | 2023-07-26 16:54:22 -0700 | |
---|---|---|
committer | 2023-07-26 16:54:36 -0700 | |
commit | 664ccec7d33cc94ba829f35fc7ef8ca7794095cc (patch) | |
tree | 8213b2ee01afa39c9bb1c9d26aa5cae6d13d0cdc /src/bun.js/javascript.zig | |
parent | 1a558ef7538a19545e5934dfc99edf86ec436892 (diff) | |
download | bun-664ccec7d33cc94ba829f35fc7ef8ca7794095cc.tar.gz bun-664ccec7d33cc94ba829f35fc7ef8ca7794095cc.tar.zst bun-664ccec7d33cc94ba829f35fc7ef8ca7794095cc.zip |
Disable concurrent transpiler in macros
Diffstat (limited to 'src/bun.js/javascript.zig')
-rw-r--r-- | src/bun.js/javascript.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bun.js/javascript.zig b/src/bun.js/javascript.zig index a049f4263..d8043ca44 100644 --- a/src/bun.js/javascript.zig +++ b/src/bun.js/javascript.zig @@ -751,6 +751,7 @@ pub const VirtualMachine = struct { this.macro_mode = true; this.event_loop = &this.macro_event_loop; Analytics.Features.macros = true; + this.transpiler_store.enabled = false; } pub fn disableMacroMode(this: *VirtualMachine) void { @@ -758,6 +759,7 @@ pub const VirtualMachine = struct { this.bundler.resolver.caches.fs.use_alternate_source_cache = false; this.macro_mode = false; this.event_loop = &this.regular_event_loop; + this.transpiler_store.enabled = true; } pub fn getAPIGlobals() []js.JSClassRef { |