1. @rollup/plugin-beep
A Rollup plugin which beeps on errors and warnings
@rollup/plugin-beep
Package: @rollup/plugin-beep
Created by: rollup
Last modified: Thu, 05 Oct 2023 12:00:03 GMT
Version: 1.0.3
License: MIT
Downloads: 1,601
Repository: https://github.com/rollup/plugins

Install

npm install @rollup/plugin-beep
yarn add @rollup/plugin-beep

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:

 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.

Options

This plugin currently has no available options.

Meta

CONTRIBUTING

LICENSE (MIT)

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin