Reproing the cjs bug. Run yarn
to install, and then yarn build
.
./lib/tryRequire.cjs
does not have export {}
at the end of the output.
module.exports = {
tryRequire: function (modulePath) {
return require(modulePath);
},
};
export {};
//# sourceMappingURL=tryRequire.cjs.map