Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(node-resolve): add native node es modules support #413

Merged
merged 1 commit into from Jun 7, 2020

Conversation

TrySound
Copy link
Member

Rollup Plugin Name: node-resolve

This PR contains:

  • bugfix
  • feature
  • refactor
  • documentation
  • other

Are tests included?

  • yes (bugfixes and features will not be merged without tests)
  • no

Breaking Changes?

  • yes (breaking changes will not be merged unless absolutely necessary)
  • no

If yes, then include "BREAKING CHANGES:" in the first commit message body, followed by a description of what is breaking.

List any relevant issue numbers:

Description

Wrapper module is the simplest solution. I used it in terser plugin
which cannot resolve worker without commonjs for now.

@dilyanpalauzov

This comment has been minimized.

@dilyanpalauzov

This comment has been minimized.

@TrySound
Copy link
Member Author

Not in this PR. Need to figure out if this is the way we want to go.

Copy link
Member

@lukastaegert lukastaegert left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

node-resolve already has a rollup build step that produces ESM output. While your suggestion is valid, there is no really a hard reason to avoid duplication here as the plugin is essentially stateless. What I do not like here is that the file is not in dist, but more importantly that it needs to be maintained manually.

I would rather either reference the ESM build here via export * from... if it should be non-breaking, or rename the ESM build to .mjs, which might be breaking for direct importers.

To place the file in dist, we could just emit it inline in the rollup.config file.

But this is just my opinion. Also the recommendation for greater compatibility is to use

"exports": {
    "import": "./index.mjs" 
    "default": "./dist/index.js"
  }

as require was added later and default is a catch-all for all non-import-cases.

@arlac77
Copy link

arlac77 commented May 25, 2020

"exports": {
    "import": "./index.mjs" 
    "default": "./dist/index.js"
  }

From my experience node will select 'default' slot to often and ignore 'import'

@TrySound
Copy link
Member Author

Should we support old versions of "unstable" node?

@lukastaegert
Copy link
Member

From my experience node will select 'default' slot to often and ignore 'import'

Order matters here, import needs to be first

@lukastaegert
Copy link
Member

Should we support old versions of "unstable" node?

May not be too important, admittedly.

@shellscape
Copy link
Collaborator

Should we support old versions of "unstable" node?

I vote no.

packages/node-resolve/package.json Show resolved Hide resolved
packages/pluginutils/rollup.config.js Outdated Show resolved Hide resolved
TrySound added a commit that referenced this pull request May 26, 2020
Ref #412 #413

Enable native node es modules via "exports" field in package.json.
Added custom plugin to generate nested package.json with `{"type": "module"}`
to prevent mjs extension usage.
shellscape pushed a commit that referenced this pull request Jun 1, 2020
* feat(pluginutils): add native node es modules support

Ref #412 #413

Enable native node es modules via "exports" field in package.json.
Added custom plugin to generate nested package.json with `{"type": "module"}`
to prevent mjs extension usage.

* Export emitModulePackageFile from shared config

* Bundle estree-walker

* Swap options
Ref #412

Enable native node es modules via "exports" field in package.json.
Added custom plugin to generate nested package.json with {"type": "module"}
as an alternative to mjs extension usage. This works similar to rollup distribution.
https://unpkg.com/browse/rollup@2.10.9/dist/es/
@shellscape
Copy link
Collaborator

@lukastaegert please take another look at this one

"import": "./dist/es/index.js"
},
"module": "./dist/es/index.js",
"type": "commonjs",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this say commonjs instead of module? When I was reading https://nodejs.org/api/esm.html#esm_conditional_exports I saw that they use type module together with exports require and import.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For modules there is package.json with {type:module} in dist/es

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting. Is there a reason a nested package.json approach is preferred to declaring everything in the top-level package.json?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not all tools are ready to use native es modules. Some may just not work. So we go with commonjs default and enable module mode where necessary.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think type: commonjs in a package.json is not really necessary as this is the default anyway: https://nodejs.org/api/esm.html#esm_package_json_type_field

But we can still keep it for clarity's sake.

"import": "./dist/es/index.js"
},
"module": "./dist/es/index.js",
"type": "commonjs",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think type: commonjs in a package.json is not really necessary as this is the default anyway: https://nodejs.org/api/esm.html#esm_package_json_type_field

But we can still keep it for clarity's sake.

@TrySound
Copy link
Member Author

TrySound commented Jun 7, 2020

Yes, I added type to be explicit.

@shellscape shellscape merged commit 39eb61c into master Jun 7, 2020
@shellscape shellscape deleted the node-resolve-mjs branch June 7, 2020 12:45
LarsDenBakker pushed a commit to LarsDenBakker/plugins that referenced this pull request Sep 12, 2020
* feat(pluginutils): add native node es modules support

Ref rollup#412 rollup#413

Enable native node es modules via "exports" field in package.json.
Added custom plugin to generate nested package.json with `{"type": "module"}`
to prevent mjs extension usage.

* Export emitModulePackageFile from shared config

* Bundle estree-walker

* Swap options
LarsDenBakker pushed a commit to LarsDenBakker/plugins that referenced this pull request Sep 12, 2020
Ref rollup#412

Enable native node es modules via "exports" field in package.json.
Added custom plugin to generate nested package.json with {"type": "module"}
as an alternative to mjs extension usage. This works similar to rollup distribution.
https://unpkg.com/browse/rollup@2.10.9/dist/es/
vasttiankliu pushed a commit to vasttiankliu/plugins that referenced this pull request Nov 17, 2022
* feat(pluginutils): add native node es modules support

Ref rollup/plugins#412 rollup/plugins#413

Enable native node es modules via "exports" field in package.json.
Added custom plugin to generate nested package.json with `{"type": "module"}`
to prevent mjs extension usage.

* Export emitModulePackageFile from shared config

* Bundle estree-walker

* Swap options
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants