rollup-plugin-progress2
v0.2.3
Published
Rollup progress plugin for rollup v3
Downloads
188
Maintainers
Readme
Introduction
Base on rollup-plugin-progress, rewrite by typescript and support rollup v3.
rollup-plugin-progress2
Show current module being transpiled by the rollup bundler.
Installation
npm i -D rollup-plugin-progress2
Usage
Include the following in the rollup config
import { defineConfig } from 'rollup'
import progress from 'rollup-plugin-progress2'
const rollupConfig = defineConfig({
plugins: [
progress({
clearLine: false // default: true
})
]
})
export default rollupConfig