system-bell-webpack-plugin
v1.0.0
Published
Plugin for webpack that emits a system bell character whenever there is a build error
Downloads
2,633
Maintainers
Readme
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;