feat(commonjs): Expose cjs detection and support offline caching#604
Merged
shellscape merged 1 commit intomasterfrom Oct 15, 2020
Merged
feat(commonjs): Expose cjs detection and support offline caching#604shellscape merged 1 commit intomasterfrom
shellscape merged 1 commit intomasterfrom
Conversation
Member
Author
|
cc @underfin |
c7ed537 to
72aca30
Compare
Member
Author
|
As the relevant Rollup version has been released, this is now ready for review! Note that this is a breaking change as it raises the peerDependency version of Rollup. |
Collaborator
|
@lukastaegert a recent merged caused a few conflicts. Please take a peek |
72aca30 to
f2cc961
Compare
BREAKING CHANGES: Raises minimal required Rollup version to 2.30.0
f2cc961 to
305605d
Compare
Member
Author
|
Done. Also made sure to add the BREAKING CHANGES marker to the first commit. |
shellscape
approved these changes
Oct 15, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rollup Plugin Name:
commonjsThis PR contains:
Are tests included?
Breaking Changes?
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
Note: This features relies on the yet-to-be-released rollup/rollup#3813, specifically the new
moduleParsedhook. Once that is released and the peer dependency version of this plugin has been adjusted, tests should be green and this PR will be ready for merge.This will expose the result of the CommonJS file-type detection as a module meta property, exposed via
this.getModuleInfo(id).meta.commonjs.isCommonJSor the module info passed to themoduleParsedhook.This will for the first time allow this plugin to work with caching data taken from a disk cache that was not created in the same session. Previously in such a setup, Rollup would hang as the file type detection promises would never resolve. Now you can do this and it will work:
Depending on this, I seriously consider adding some built-in disk-cache capabilities into rollup-cli now (probably via a small detour across
zlibto save disk space).