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

https://github.com/gwuhaolin/end-webpack-plugin

webpack end hook
https://github.com/gwuhaolin/end-webpack-plugin

webpack

Last synced: about 1 year ago
JSON representation

webpack end hook

Awesome Lists containing this project

README

          

# end hook after webpack is done

## install
```bash
npm i end-webpack-plugin --save-dev
```

## use
```js
new EndWebpackPlugin(stats => {
console.info('after webpack all done',stats)
} , err => {
console.error('after webpack exit with error',err)
})
```