/progress-webpack-plugin

Progress for webpack builds

Primary LanguageTypeScriptMIT LicenseMIT

Progress Webpack Plugin

A plugin for Webpack 4 that adds a minimal build progress in the command line during builds.

Installation

Add as a dev-dependency to your package.json via npm or yarn

npm i @supersede/progress-webpack-plugin --save-dev
yarn add @supersede/progress-webpack-plugin -D

Usage

Import the plugin into your Webpack configuration file:

const ProgressWebpackPlugin = require('@supersede/progress-webpack-plugin');
import ProgressWebpackPlugin from '@supersede/progress-webpack-plugin';

Add it to the list of plugins:

plugins: [new SimpleProgressWebpackPlugin()];