0.1.0 • Published 6 years ago

ts-on-build-webpack v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

on-build-webpack

Webpack plugin that gives ability to add callback after build.

Installation

npm install --save-dev on-build-webpack

Usage

In config file:

var WebpackOnBuildPlugin = require('on-build-webpack');

// ...
  module: {
    plugins: [
      new WebpackOnBuildPlugin(function(stats) {
        // Do whatever you want...
      }),
    ]
  },
// ...