Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 1.59 KB

File metadata and controls

60 lines (41 loc) · 1.59 KB

npm size libera manifesto

@rollup/plugin-beep

🍣 A Rollup plugin that beeps when a build ends with errors.

Requirements

This plugin requires an LTS Node version (v14.0.0+) and Rollup v1.20.0+.

Install

Using npm:

npm install @rollup/plugin-beep --save-dev

Usage

Create a rollup.config.js configuration file and import the plugin:

import beep from '@rollup/plugin-beep';

export default {
  input: 'src/index.js',
  output: {
    dir: 'output',
    format: 'cjs'
  },
  plugins: [beep()]
};

Note

If your editor complains that "beep is not a function", then use the named export instead:

import { alias } from '@rollup/plugin-alias';

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.

Options

This plugin currently has no available options.

Meta

CONTRIBUTING

LICENSE (MIT)