Packaging - liquidcarrot/repository GitHub Wiki
Packaging
Packaging a monolith library for both Node.js and Browser can be complicated the following should make it easier.
Use browserify
to pack src/index.js
(or another file) into a UMD module using browserify src/index.js -o dist/index.js -s [MODULE_NAME]
.