Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `@jsdevtools/ono@7.1.3` for the project I'm working on. <!-- 🔺️🔺️🔺️ PLEASE REPLACE THIS BLOCK with a description of your problem, and any other relevant context 🔺️🔺️🔺️ --> Here is the diff that solved my problem: ```diff diff --git a/node_modules/@jsdevtools/ono/esm/index.js b/node_modules/@jsdevtools/ono/esm/index.js index 7e6b469..c0cebe6 100644 --- a/node_modules/@jsdevtools/ono/esm/index.js +++ b/node_modules/@jsdevtools/ono/esm/index.js @@ -6,6 +6,6 @@ export { ono }; export default ono; // CommonJS default export hack if (typeof module === "object" && typeof module.exports === "object") { - module.exports = Object.assign(module.exports.default, module.exports); + module.exports = Object.assign(module.exports.default || {}, module.exports); } //# sourceMappingURL=index.js.map ``` <em>This issue body was [partially generated by patch-package](https://github.com/ds300/patch-package/issues/296).</em>