rollup-plugin-progress
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/rollup-plugin-progress package

1.1.2 • Public • Published

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' }) );

/rollup-plugin-progress/

    Package Sidebar

    Install

    npm i rollup-plugin-progress

    Weekly Downloads

    20,918

    Version

    1.1.2

    License

    MIT

    Unpacked Size

    6.24 kB

    Total Files

    5

    Last publish

    Collaborators

    • jkuri