compiler-webpack-plugin
v0.0.1
Published
A webpack plugin which allows the configuration to define its own compiler callbacks
Downloads
106
Readme
compiler-webpack-plugin
A webpack plugin which allows the configuration to define its own compiler callbacks.
Install
npm install compiler-webpack-plugin
Usage
// webpack.config.js
var CompilerPlugin = require('compiler-webpack-plugin')
module.exports = {
...
plugins: [
...
new CompilerPlugin('done', function (stats) {
...
})
]
...
}