Skip to content

Commit a32c4ba

Browse files
authoredJun 17, 2022
fix(optimizer): use simple browser external shim in prod (#8630)
1 parent d402ad3 commit a32c4ba

File tree

1 file changed

+24
-18
lines changed

1 file changed

+24
-18
lines changed
 

‎packages/vite/src/node/optimizer/esbuildDepPlugin.ts

+24-18
Original file line numberDiff line numberDiff line change
@@ -224,24 +224,29 @@ export function esbuildDepPlugin(
224224
build.onLoad(
225225
{ filter: /.*/, namespace: 'browser-external' },
226226
({ 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: `\
245250
module.exports = Object.create(new Proxy({}, {
246251
get(_, key) {
247252
if (
@@ -254,6 +259,7 @@ module.exports = Object.create(new Proxy({}, {
254259
}
255260
}
256261
}))`
262+
}
257263
}
258264
}
259265
)

0 commit comments

Comments
 (0)
Please sign in to comment.