Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

system-bell-webpack-plugin

jannesmeyer2.3kGPL-3.01.0.0

Plugin for webpack that emits a system bell character whenever there is a build error

webpack, plugin, sound, error, notification, notify, on error

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;