Subscribe on changes!

Do not differ between CommonJS and ESM builds

avatar
Nov 8th 2020

What problem does this feature solve?

Parcel 2 breaks on Vue with HMR because it expects __VUE_HMR_RUNTIME__ to be defined in the global scope. This is only defined in the ESM build because Vue assumes all bundlers will use ESM. However, to save Babel compilation time in development, Parcel 2 uses the CommonJS version, defined by "main" in package.json, meaning the HMR runtime added by the Vue transformer breaks. This issue was found in parcel-bundler/parcel#5325.

What does the proposed API look like?

Code that functions differently with CommonJS and ESM is unusual and is arguably an antipattern. Creating a CJS version for bundlers and adding that to "main" or adding the HMR runtime to the existing CJS build would fix the issue.

avatar
Nov 9th 2020

This sounds more like a bug in Parcel: they should follow the same convention followed by webpack and include the module instead of main one when doing bundling. That way they can benefit from tree shaking and any other bundler-only feature. The CJS version is meant to be used on Node

Code that functions differently with CommonJS and ESM is unusual and is arguably an antipattern.

No, because both target different environments (Node vs Browser) so it makes sense to optimize them differently

avatar
Nov 9th 2020

Tree shaking doesn't work with HMR, hence ESM is useless when developing with HMR and transpiling ESM to CommonJS, which is ultimately used in the final build, only slows the build down.

You can't assume ESM is bundler and CJS is Node anymore; Node supports ESM loading. Instead, the "browser" field of package.json should being used to do that.

If you really want to force Parcel to unnecessarily transpile ESM in development, setting the "browser" field to the ESM version will fix the issue.

avatar
Nov 9th 2020

If you really want to force Parcel to unnecessarily transpile ESM in development, setting the "browser" field to the ESM version will fix the issue.

👍


(The modern way for different builds for esm/cjs/node is the exports field: https://webpack.js.org/guides/package-exports/#target-environment.)

avatar
Nov 12th 2020

@posva Would adding the "browser" field to package.json be possible? It just needs to refer to the same thing as "module" and would fix Parcel 2 support.

avatar
Nov 12th 2020

If I recall correctly, using "browser" for the ESM breaks other things because it's not a browser module, it contains environment variables

avatar
Nov 12th 2020

As far as I know, only bundlers support the "browser" key, and since bundlers can replace the environment variables, it should work...

avatar
Nov 12th 2020

No, bundlers are not the only ones, some cdns use it too

avatar
Nov 12th 2020

One solution would be adding typeof process !== "undefined" when the env variables are checked.