1.0.2 • Published 4 years ago

ultrabundle v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

UltraBundle

An efficient and agressive bundler powered by rollup.

Well yes, this is another bundler, but honestly, a good one.

Features

  • First class TypeScript support.
  • Lots of optimizations out of the box.
  • Simple single JSON file configuration.
  • Supports file watching.

Install

npm i -D ultrabundle

Use

  1. Create a file named bundles.json in the root of your application (where package.json is located).
  2. Paste in the configuration of the bundles.
[
    {
        "input": "src/index.ts",
        "output": "dist/output.js"
    }
]
  1. Define 3 simple scripts in your package.json
"dev": "ultrabundle",
"watch": "ultrabundle --watch",
"prod": "ultrabundle --optimize"