You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

rollup-plugin-no-emit

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-no-emit

A Rollup plugin that skips emit for generated bundles.

1.3.0
latest
Source
npm
Version published
Weekly downloads
2.1K
-37.08%
Maintainers
1
Weekly downloads
 
Created
Source

rollup-plugin-no-emit

npm Node.js CI

A Rollup plugin that skips emit for generated bundles.

Install

npm install --save-dev rollup-plugin-no-emit

Usage

// ES6
import noEmit from 'rollup-plugin-no-emit';

// CommonJS
const { noEmit } = require('rollup-plugin-no-emit');

Use the plugin, example rollup.config.js:

import noEmit from 'rollup-plugin-no-emit';

export default {
  input: 'src/index.js',
  output: { dir: 'dist' },
  plugins: [noEmit(/* plugin options */)]
};

Options

You can pass an options object to noEmit with the following properties:

emit

Type: boolean
Default: false

Set to true to invalidate plugin and emit files.

match

Type: (fileName: string, output: OutputChunk | OutputAsset) => boolean

Return true to skip emit for output file.

In the example below (rollup.config.js), the output file dist/index.js is emitted while dist/output.js is skipped:

import noEmit from 'rollup-plugin-no-emit';

export default {
  input: 'src/index.js',
  output: [{ file: 'dist/index.js' }, { file: 'dist/output.js' }],
  plugins: [noEmit({ match: file => file === 'output.js' })]
};

License

Licensed under the MIT License.

Keywords

rollup-plugin

FAQs

Package last updated on 22 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts