Skip to content

jkuri/rollup-plugin-progress

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

rollup plugin for current build status

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published