Skip to content

Commit 03af2c8

Browse files
authored
fix: auto-attach/debug terminal not working in nightly (#1831)
The plugin didn't mark acorn as side-effect-free, so the watchdog bundle was trying to import it
1 parent 3c0817c commit 03af2c8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/build/esbuildPlugins.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ exports.hackyVendorBundle = vendors => ({
2727
args => ({
2828
path: vendors.get(args.path),
2929
external: true,
30+
sideEffects: false,
3031
}),
3132
);
3233
},

0 commit comments

Comments
 (0)