Skip to content

Fix importing polyfill plugins in the Rollup bundle#13017

Merged
nicolo-ribaudo merged 1 commit intobabel:mainfrom
nicolo-ribaudo:fix-rollup-import-of-polyfill-plugins
Mar 22, 2021
Merged

Fix importing polyfill plugins in the Rollup bundle#13017
nicolo-ribaudo merged 1 commit intobabel:mainfrom
nicolo-ribaudo:fix-rollup-import-of-polyfill-plugins

Conversation

@nicolo-ribaudo
Copy link
Copy Markdown
Member

@nicolo-ribaudo nicolo-ribaudo commented Mar 18, 2021

Q                       A
Fixed Issues? Fixes #13016
Patch: Bug Fix? Yes
Major: Breaking Change?
Minor: New Feature?
Tests Added + Pass? Yes
Documentation PR Link
Any Dependency Changes?
License MIT

The polyfill plugins are ESM files compiled down to CJS, and thus they have an __esModule: true property.

When bundling CJS files that have the __esModule: true option, Rollup matches the default Babel interop and transforms import foo from "foo" to const foo = require("foo").default (rather than const foo = require("foo"), as Node.js does).

This PR introduces a small Babel plugins that rewrites those specific import foo to import * as foo when bundling.

I opened rollup/plugins#838 to see if the Rollup community is interested in aligning with Node.js.

@babel-bot
Copy link
Copy Markdown
Collaborator

Build successful! You can test your changes in the REPL here: https://babeljs.io/repl/build/44374/

@codesandbox-ci
Copy link
Copy Markdown

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit df07f0a:

Sandbox Source
babel-repl-custom-plugin Configuration
babel-plugin-multi-config Configuration

@nicolo-ribaudo nicolo-ribaudo merged commit 4beca39 into babel:main Mar 22, 2021
@nicolo-ribaudo nicolo-ribaudo deleted the fix-rollup-import-of-polyfill-plugins branch March 22, 2021 13:48
@nicolo-ribaudo
Copy link
Copy Markdown
Member Author

nicolo-ribaudo commented Mar 22, 2021

Merging since this is just a change in the build config and not in the source itself.

I'll revert once rollup/plugins#838 is merged.

@github-actions github-actions Bot added the outdated A closed issue/PR that is archived due to age. Recommended to make a new issue label Jun 22, 2021
@github-actions github-actions Bot locked as resolved and limited conversation to collaborators Jun 22, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

i: regression outdated A closed issue/PR that is archived due to age. Recommended to make a new issue pkg: standalone PR: Bug Fix 🐛 A type of pull request used for our changelog categories

Projects

None yet

Development

Successfully merging this pull request may close these issues.

@babel/standalone is broken after #12795

3 participants