1. progress-webpack-plugin
progress webpack plugin
progress-webpack-plugin
Package: progress-webpack-plugin
Created by: ali322
Last modified: Fri, 24 Jun 2022 17:38:24 GMT
Version: 1.0.16
License: MIT
Downloads: 1,422,753
Repository: https://github.com/ali322/progress-webpack-plugin

Install

npm install progress-webpack-plugin
yarn add progress-webpack-plugin

progress-webpack-plugin npm version

NPM

inspired by progress-bar-webpack-plugin,simple Webpack plugin that display nice progress when build

Install

 npm install progress-webpack-plugin --save--dev

Usage

add plugin in your webpack.config.js

 var ProgressPlugin = require('progress-webpack-plugin')

module.exports = {
    ...
    plugins:[
        new ProgressPlugin(true)
    ]
}

Plugin Options

  • minimal: enable minimal mode or not,default value is false
  • identifier: identifier of webpack bundle
  • onStart: callback function when webpack bundler started
  • onFinish: callback function when webpack bundler finished
  • onProgress: callback function when webpack bundler running
  • clear: whether clear console when webpack bundler finished

License

MIT License

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