on-build-webpack
v0.1.0
Published
Webpack plugin that gives ability to add callback after build
Downloads
26,990
Readme
on-build-webpack
Webpack plugin that gives ability to add callback after build.
Installation
npm install --save-dev on-build-webpack
Usage
In config file:
var WebpackOnBuildPlugin = require('on-build-webpack');
// ...
module: {
plugins: [
new WebpackOnBuildPlugin(function(stats) {
// Do whatever you want...
}),
]
},
// ...