compile to commonjs

This commit is contained in:
Randall Schmidt
2021-07-09 14:36:43 -04:00
parent 998d18ae84
commit 675ed9bbf2
7 changed files with 52 additions and 35 deletions

4
commonjs/wrapper.cjs Normal file
View File

@ -0,0 +1,4 @@
const mod = require('./index.cjs');
module.exports = mod.default;
Object.assign(module.exports, mod);