-
Notifications
You must be signed in to change notification settings - Fork 927
use esm2017 builds by default #5539
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
Conversation
🦋 Changeset detectedLatest commit: 4cd11cf The changes in this PR will be included in the next version bump. This PR includes changesets to release 30 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Changeset File Check ✅
|
Binary Size ReportAffected SDKs
Test Logs |
Size Analysis ReportAffected Products
|
if (results && results.length > 1) { | ||
return results[1]; | ||
} | ||
return input.constructor.name; |
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.
@schmidt-sebastian I changed the compilation target to es2017 for testing, which preserves class definitions and revealed that this function doesn't work with classes. Changed to use constructor.name
which is available everywhere except IE, which we don't need to worry about anymore. - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name#browser_compatibility
Can we get rid of "es2017ToEs5Plugins" in rollup.shared.js and remove the remaining callsites? |
Esm2017 is the default build for v9 libraries. Changing util libraries to use esm2017 by default.