-
Notifications
You must be signed in to change notification settings - Fork 6
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: split CJS and ESM outputs more formally #707
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #707 +/- ##
=======================================
Coverage 80.33% 80.33%
=======================================
Files 37 37
Lines 1119 1119
Branches 145 145
=======================================
Hits 899 899
Misses 220 220 ☔ View full report in Codecov by Sentry. |
rules: { | ||
"package-json/sort-collections": "off", | ||
}, | ||
}, |
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.
Irksome conflict between the ESLint plugin and Prettier. I don't have the bandwidth to investigate right now.
🎉 This is included in version v0.5.0 🎉 The release is available on: Cheers! 📦🚀 |
PR Checklist
status: accepting prs
Overview
Previously, all outputs were in one
lib/
directory. Now they're inlib/cjs
andlib/esm
. This way the package & its consumers don't have to deal with ambiguities in imports/requires around file extensions.💖