-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Packages: only add polyfills where needed #65292
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
Merged
sgomes
merged 14 commits into
trunk
from
update/only-add-polyfills-to-packages-that-need-them
Sep 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
f0e3386
Packages: only add polyfills where needed
sgomes 9a490fc
Attempt to fix interactivity-router
sgomes 9d54993
Switch to using magic comments
sgomes 74bab7c
Remove previous experiment
sgomes 1f7785b
Clean up changelog, comments and option name
sgomes 5e926d3
Fix small typo in babel plugin comment
sgomes 0d03c67
Tweak comment preservation regex
sgomes a3d11f1
Simplify buffer check
sgomes a1b0480
Fix outdated comment
sgomes 5a51225
Use Internal header for babel preset changelog
sgomes d9ea190
Add unit test for DEWP
sgomes 061b7eb
Add babel plugin test
sgomes 91eb78d
Update babel plugin readme
sgomes 28f1b5b
Simplify DEWP test
sgomes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Attempt to fix interactivity-router
- Loading branch information
commit 9a490fc99f743e9b1ab5fd036f4790df2359bf92
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this attempting to ignore the module during when externalizing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that's correct! I sneaked this change in today to see if it fixed the tests. If it works, I'll see if I can simplify it later 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like it would be necessary to be included somehow for
@wordpress/interactivity-router.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, I think this exposed the fact that while
@wordpress/interactivity-routerdoesn't currently depend on the polyfills, it probably should, if we want it to work correctly in older browsers like Chrome 109. Although there isn't really a good mechanism to make that happen, as far as I know 🤔