2017-09-13 07:52:34 +02:00

30 lines
429 B
Markdown

# on-build-webpack
[Webpack](http://webpack.github.io/) plugin that gives ability to add callback
after build.
## Installation
```
npm install --save-dev on-build-webpack
```
## Usage
In config file:
``` javascript
var WebpackOnBuildPlugin = require('on-build-webpack');
// ...
module: {
plugins: [
new WebpackOnBuildPlugin(function(stats) {
// Do whatever you want...
}),
]
},
// ...
```