Skip to content

v0.6.0

Compare
Choose a tag to compare
@romainmenke romainmenke released this 05 Sep 08:53
· 408 commits to main since this release
b7f3d56

Now includes DOMTokenList and NodeList polyfills from polyfill.io.
These conflict with core-js and require a change in your babel config to prevent issues.

Babel docs on exclude

+ exclude: [
+ 	"web.dom-collections.iterator",
+ 	"web.dom-collections.for-each"
+ ]

These need to be added in all steps/stages where core-js|preset-env might include these polyfills.

example change