We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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].
browserify
src/index.js
browserify src/index.js -o dist/index.js -s [MODULE_NAME]