bili
Introduction
Running command bili
it will compile src/index.js
to:
dist/[name].common.js
The [name]
is name
in package.json
or index.js
as fallback.
You can also generate UMD bundle and compress it with: bili --format umd --compress
, then you get:
dist/[name].js
dist/[name].min.js
dist/[name].min.js.map
Not enough? You can have them all in one command bili --format cjs --format es --format umd --compress
:
dist/[name].js
dist/[name].min.js
dist/[name].min.js.map
dist/[name].common.js
dist/[name].es.js
Note: In UMD
format all third-party libraries will be bundled in dist files, while in other formats they are excluded.
Install
npm install -g bili
Dive into the documentation if you are ready to bundle!
License
MIT © EGOIST