@@ -224,24 +224,29 @@ export function esbuildDepPlugin(
224
224
build . onLoad (
225
225
{ filter : / .* / , namespace : 'browser-external' } ,
226
226
( { path } ) => {
227
- return {
228
- // Return in CJS to intercept named imports. Use `Object.create` to
229
- // create the Proxy in the prototype to workaround esbuild issue. Why?
230
- //
231
- // In short, esbuild cjs->esm flow:
232
- // 1. Create empty object using `Object.create(Object.getPrototypeOf(module.exports))`.
233
- // 2. Assign props of `module.exports` to the object.
234
- // 3. Return object for ESM use.
235
- //
236
- // If we do `module.exports = new Proxy({}, {})`, step 1 returns empty object,
237
- // step 2 does nothing as there's no props for `module.exports`. The final object
238
- // is just an empty object.
239
- //
240
- // Creating the Proxy in the prototype satisfies step 1 immediately, which means
241
- // the returned object is a Proxy that we can intercept.
242
- //
243
- // Note: Skip keys that are accessed by esbuild and browser devtools.
244
- contents : `\
227
+ if ( config . isProduction ) {
228
+ return {
229
+ contents : 'module.exports = {}'
230
+ }
231
+ } else {
232
+ return {
233
+ // Return in CJS to intercept named imports. Use `Object.create` to
234
+ // create the Proxy in the prototype to workaround esbuild issue. Why?
235
+ //
236
+ // In short, esbuild cjs->esm flow:
237
+ // 1. Create empty object using `Object.create(Object.getPrototypeOf(module.exports))`.
238
+ // 2. Assign props of `module.exports` to the object.
239
+ // 3. Return object for ESM use.
240
+ //
241
+ // If we do `module.exports = new Proxy({}, {})`, step 1 returns empty object,
242
+ // step 2 does nothing as there's no props for `module.exports`. The final object
243
+ // is just an empty object.
244
+ //
245
+ // Creating the Proxy in the prototype satisfies step 1 immediately, which means
246
+ // the returned object is a Proxy that we can intercept.
247
+ //
248
+ // Note: Skip keys that are accessed by esbuild and browser devtools.
249
+ contents : `\
245
250
module.exports = Object.create(new Proxy({}, {
246
251
get(_, key) {
247
252
if (
@@ -254,6 +259,7 @@ module.exports = Object.create(new Proxy({}, {
254
259
}
255
260
}
256
261
}))`
262
+ }
257
263
}
258
264
}
259
265
)
0 commit comments