0.0.1 • Published 9 years ago

compiler-webpack-plugin v0.0.1

Weekly downloads
137
License
MIT
Repository
github
Last release
9 years ago

compiler-webpack-plugin

devDependency Status

js-standard-style

A webpack plugin which allows the configuration to define its own compiler callbacks.

Install

npm install compiler-webpack-plugin

Usage

// webpack.config.js
var CompilerPlugin = require('compiler-webpack-plugin')

module.exports = {
  ...
  plugins: [
    ...
    new CompilerPlugin('done', function (stats) {
      ...
    })
  ]
  ...
}