Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

rollup-plugin-progress

jkuri92.6kMIT1.1.2TypeScript support: definitely-typed

Rollup Progress Plugin

rollup, plugin, progress, progressbar

readme

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