Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jkuri/rollup-plugin-progress

rollup plugin for current build status
https://github.com/jkuri/rollup-plugin-progress

Last synced: 22 days ago
JSON representation

rollup plugin for current build status

Awesome Lists containing this project

README

        

## rollup-plugin-progress

Show current module being transpiled by the rollup bundler.

### Installation

```sh
npm i rollup-plugin-progress --save-dev
```

### Usage

Include the following in the rollup config

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