An open API service indexing awesome lists of open source software.

https://github.com/kossnocorp/on-build-webpack

Webpack plugin that gives ability to add callback after build
https://github.com/kossnocorp/on-build-webpack

Last synced: 4 months ago
JSON representation

Webpack plugin that gives ability to add callback after build

Awesome Lists containing this project

README

        

# 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...
}),
]
},
// ...
```