npm.io
1.1.2 • Published 6 years ago

rollup-plugin-progress

Licence
MIT
Version
1.1.2
Deps
1
Size
6 kB
Vulns
0
Weekly
0
Stars
53

rollup-plugin-progress

Show current module being transpiled by the rollup bundler.

Installation

npm i rollup-plugin-progress --save-dev
Usage

Include the following in the rollup config

import { rollup } from 'rollup';
import progress from 'rollup-plugin-progress';

rollup({
  entry: 'main.js',
  plugins: [
    progress({
      clearLine: false // default: true
    })
  ]
}).then( bundle => bundle.write({ dest: 'bundle.js', format: 'iife' }) );

Keywords