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
- Host: GitHub
- URL: https://github.com/gwuhaolin/end-webpack-plugin
- Owner: gwuhaolin
- Created: 2017-02-14T09:55:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-08-11T08:52:33.000Z (almost 8 years ago)
- Last Synced: 2025-02-26T05:41:30.926Z (over 1 year ago)
- Topics: webpack
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
})
```