1. rollup-plugin-progress
Rollup Progress Plugin
rollup-plugin-progress
Package: rollup-plugin-progress
Created by: jkuri
Last modified: Sat, 22 Jul 2023 22:39:51 GMT
Version: 1.1.2
License: MIT
Downloads: 66,447
Repository: https://github.com/jkuri/rollup-plugin-progress

Install

npm install rollup-plugin-progress
yarn add rollup-plugin-progress

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' }) );

Dependencies

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin