HcySunYang / bili

πŸ₯‚ Delightful library bundler.

Home Page:https://egoist.moe/bili

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bili

NPM version NPM downloads CircleCI codecov donate chat

Delightful library bundler.

Features

  • πŸš€ Fast, well it's using Rollup anyways.
  • πŸš— Automatically transforms JS files using Buble/Babel.
  • 🎢 Ridiculously easy to use Rollup plugins if you want.
  • 🚨 Friendly error logging experience.

preview

Install

# Globally
yarn global add bili
# Locally
yarn add bili --dev

If you prefer npm:

# Globally
npm i -g bili
# Locally
npm i -D bili

Usage

Bundle src/index.js with a single command:

bili

Then you will get ./dist/index.cjs.js. To generate in more formats, try:

bili --format cjs,es,umd,umd-min

Then you will get:

index.js            # UMD format
index.min.js        # Minified UMD format
index.min.js.map    # Sourcemaps for minified UMD format
index.cjs.js        # CommonJS format
index.m.js          # ES module format

Dive into the documentation to see more neat features!

Here're some quick links:

Bundled by Bili

  • cac - Simple yet powerful framework for building command-line interface.
  • vue-final-form - 🏁 High performance subscription-based form state management for Vue.js.
  • babel-preset-vue - Babel preset for transforming Vue JSX.
  • Feel free to submit yours

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

bili Β© EGOIST, Released under the MIT License.
Authored and maintained by EGOIST with help from contributors (list).

egoist.moe Β· GitHub @EGOIST Β· Twitter @_egoistlily

About

πŸ₯‚ Delightful library bundler.

https://egoist.moe/bili

License:MIT License


Languages

Language:JavaScript 100.0%