A Rollup plugin which beeps on errors and warnings
npm install @rollup/plugin-beep[npm]: https://img.shields.io/npm/v/@rollup/plugin-beep
[npm-url]: https://www.npmjs.com/package/@rollup/plugin-beep
[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-beep
[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-beep
[![npm][npm]][npm-url]
[![size][size]][size-url]

š£ A Rollup plugin that beeps when a build ends with errors.
This plugin requires an LTS Node version (v14.0.0+) and Rollup v1.20.0+.
Using npm:
``console`
npm install @rollup/plugin-beep --save-dev
Create a rollup.config.js configuration file and import the plugin:
`js
const beep = require('@rollup/plugin-beep');
module.exports = {
input: 'src/index.js',
output: {
dir: 'output',
format: 'cjs'
},
plugins: [beep()]
};
`
Then call rollup` either via the CLI or the API. If the build produces any errors, the plugin will write a "beep" character to stderr, which should be audible on most systems.
This plugin currently has no available options.