Package Exports
- webpackbar
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (webpackbar) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Features
✔ Display elegant progress bar while building or watch ✔ Support of multiply concurrent builds (useful for SSR) ✔ Pretty print filename and loaders ✔ Windows compatible ✔ Customizable
Getting Started
To begin, you'll need to install webpackbar:
Using npm:
npm install webpackbarUsing yarn:
yarn add webpackbarThen add the reporter as a plugin to your webpack config. For example:
webpack.config.js
const webpack = require('webpack');
const WebpackBar = require('webpackbar');
module.exports = {
context: path.resolve(__dirname),
devtool: 'source-map',
entry: './entry.js',
output: {
filename: './output.js',
path: path.resolve(__dirname)
},
plugins: [
new WebpackBar(/* options */)
]
};Options
name: Display namecolor: Display color
Maintainers
Pooya Parsa
|
Pooya Parsa