Webpack plugin to run post event hook methods
npm install webpack-event-plugin
npm install --save-dev webpack-event-plugin
`
Usage
` javascript
const WebpackEventPlugin = require('webpack-event-plugin');
// ...
plugins: [
new WebpackEventPlugin([
{
hook: 'afterEmit',
callback: (compilation) => {
console.log('Files emitted!');
}
}
])
]
// ...
``