https://github.com/kossnocorp/on-build-webpack
Webpack plugin that gives ability to add callback after build
https://github.com/kossnocorp/on-build-webpack
Last synced: 4 months ago
JSON representation
Webpack plugin that gives ability to add callback after build
- Host: GitHub
- URL: https://github.com/kossnocorp/on-build-webpack
- Owner: kossnocorp
- License: mit
- Created: 2014-10-11T14:55:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-02-10T19:18:32.000Z (about 1 year ago)
- Last Synced: 2025-01-02T20:17:49.551Z (4 months ago)
- Language: JavaScript
- Size: 97.7 KB
- Stars: 61
- Watchers: 4
- Forks: 14
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# on-build-webpack
[Webpack](http://webpack.github.io/) plugin that gives ability to add callback
after build.## Installation
```
npm install --save-dev on-build-webpack
```## Usage
In config file:
``` javascript
var WebpackOnBuildPlugin = require('on-build-webpack');// ...
module: {
plugins: [
new WebpackOnBuildPlugin(function(stats) {
// Do whatever you want...
}),
]
},
// ...
```