You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Port all shipped code to TypeScript, identifying several inconsistencies along the way
BREAKING: The module exports an object now, which includes a default property. If you used the exported function before, you will have to update your code.
Use adapter.equals across the codebase
BREAKING: The signature for pseudos has changed. The second argument is now the options object, not the adapter anymore. To update your code, extract the adapter from the options object, eg. pseudos.custom = (elem, adapter) => {} is now pseudos.custom = (elem, {adapter}) => {}.