webpack-event-plugin
v1.1.1
Published
Webpack plugin to run post event hook methods
Downloads
668
Readme
webpack-event-plugin
Inspired by on-build-webpack but allows for adding a callback after user specified webpack event hooks.
Installation
npm install --save-dev webpack-event-plugin
Usage
const WebpackEventPlugin = require('webpack-event-plugin');
// ...
plugins: [
new WebpackEventPlugin([
{
hook: 'afterEmit',
callback: (compilation) => {
console.log('Files emitted!');
}
}
])
]
// ...
Available event hooks
https://webpack.js.org/api/compiler-hooks/