# rollup-plugin-progress2 **Repository Path**: taolt/rollup-plugin-progress2 ## Basic Information - **Project Name**: rollup-plugin-progress2 - **Description**: Rollup progress plugin for rollup v3 - **Primary Language**: TypeScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-12 - **Last Updated**: 2023-03-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: rollup, plugin, progress ## README ## Introduction Base on [rollup-plugin-progress](https://github.com/jkuri/rollup-plugin-progress), rewrite by typescript and support rollup v3. ## rollup-plugin-progress2 Show current module being transpiled by the rollup bundler. ### Installation ```shell npm i -D rollup-plugin-progress2 ``` ### Usage Include the following in the rollup config ```typescript import { defineConfig } from 'rollup' import progress from 'rollup-plugin-progress2' const rollupConfig = defineConfig({ plugins: [ progress({ clearLine: false // default: true }) ] }) export default rollupConfig ```