A Rollup plugin that displays a progress bar and the current module being transpiled during the build process. Version 1.1.2 (latest as of 2017) is stable with no active development. It provides real-time feedback via a progress bar and the filename of the current module, with an option to preserve terminal output (clearLine: false). Differentiator: simple, lightweight, no frills; minimal compared to alternatives like rollup-plugin-visualizer or rollup-plugin-progress-plugin.
npm install rollup-plugin-progressVerified import paths — ran on the pinned version, not inferred.
Shows how to configure the progress plugin with Rollup, including the optional clearLine flag.
Set clearLine: false if you want to preserve the progress output.
Consider using rollup-plugin-progress-plugin or omit progress plugin.
Install @types/rollup-plugin-progress if needed, or use a require() with type assertion.
Run npm install rollup-plugin-progress --save-dev
Replace import { progress } from 'rollup-plugin-progress' with import progress from 'rollup-plugin-progress'