1.0.0 • Published 8 years ago

system-bell-webpack-plugin v1.0.0

Weekly downloads
1,718
License
GPL-3.0
Repository
github
Last release
8 years ago

System Bell plugin for webpack

Installation

npm install system-bell-webpack-plugin --save-dev

Usage

var webpack = require('webpack');
var SystemBellPlugin = require('system-bell-webpack-plugin');

// webpack configuration
var config = {
	entry: …,
	output: { … },
	plugins: [
		new SystemBellPlugin()
	],
	// …
};
module.exports = config;