Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jkuri/rollup-plugin-progress
- Owner: jkuri
- License: mit
- Created: 2016-12-05T16:04:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-03T02:11:34.000Z (almost 2 years ago)
- Last Synced: 2024-05-20T12:00:37.336Z (6 months ago)
- Language: JavaScript
- Size: 49.8 KB
- Stars: 52
- Watchers: 3
- Forks: 6
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - progress - Show build progress in the console. (Plugins / All-Purpose Awesome)
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' }) );
```