rollup

Next-generation ES module bundler for JavaScript applications

brewmacoslinux
Try with needOr install directly
Source

About

Next-generation ES module bundler

Commands

rollup

Examples

Bundle a JavaScript file with default settings$ rollup src/main.js -o dist/bundle.js
Bundle using a configuration file$ rollup -c rollup.config.js
Bundle for multiple output formats (CommonJS, UMD, ES)$ rollup src/main.js -o dist/bundle.js -f umd -n MyBundle