rollup-plugin-progress

Rollup Progress Plugin

MIT 14 个版本
安装
npm install rollup-plugin-progress
yarn add rollup-plugin-progress
pnpm add rollup-plugin-progress
bun add rollup-plugin-progress
README

rollup-plugin-progress

Show current module being transpiled by the rollup bundler.

Installation

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

Usage

Include the following in the rollup config

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' }) );
版本列表
1.1.2 2020-05-10
1.1.1 2019-03-15
1.0.0 2019-01-04
0.4.0 2017-05-21
0.3.0 2017-05-19
0.2.1 2017-01-05
0.2.0 2016-12-30
0.1.0 2016-12-06
0.0.5 2016-12-05
0.0.4 2016-12-05
0.0.3 2016-12-05
0.0.2 2016-12-05
0.0.1 2016-12-05
0.0.0 2016-12-05