1. ignore-emit-webpack-plugin
Prevents ignored files from being emitted during a Webpack build
ignore-emit-webpack-plugin
Package: ignore-emit-webpack-plugin
Created by: mrbar42
Last modified: Thu, 05 May 2022 16:44:19 GMT
Version: 2.0.6
License: MIT
Downloads: 95,285
Repository: https://github.com/mrbar42/ignore-emit-webpack-plugin

Install

npm install ignore-emit-webpack-plugin
yarn add ignore-emit-webpack-plugin

Ignore Emit Webpack plugin

Build Status

Prevent files that are matching a pattern from being emitted in a webpack build.
This is achieved with a webpack plugin.

You can easily ignore file by accident - use with care.

Quick Usage

 npm i --save-dev ignore-emit-webpack-plugin

Typescript

 // webpack.config.js
import IgnoreEmitPlugin from 'ignore-emit-webpack-plugin';

export default {
  // ...
  plugins: [
    new IgnoreEmitPlugin(/\.map$/)
  ]
};

JS

 // webpack.config.js
const IgnoreEmitPlugin = require('ignore-emit-webpack-plugin');

module.exports = {
  // ...
  plugins: [ new IgnoreEmitPlugin(/\.map$/) ]
  // ...
};

The module is written in Node 8.x flavored es6.
To get the es5 transpiled version use require('ignore-emit-webpack-plugin/es5')

Usage

Signature: new IgnoreEmitPlugin(patterns, options)

  • patterns {RegExp|string|Array.<RegExp|string>} - regex, string or array with mixed regex/strings (deep nesting allowed),
    to match against the OUTPUT path of assets.
  • options {object} - optional, options object
    • options.debug {boolean} - prints extra logs

not defining patterns or defining invalid pattern will throw error.

 // single regex
new IgnoreEmitPlugin(/\/artifacy.js$/);
// single regex in array
new IgnoreEmitPlugin([ /\/artifacy.js$/ ]);
// mixed array
new IgnoreEmitPlugin([ 'file.woff', /\/artifacy.js$/ ]);

// you can also do this - but you really shouldn't
new IgnoreEmitPlugin([ [ [ [ /\/artifacy.js$/ ] ] ] ]);


// file.js
// dir/file.js

new IgnoreEmitPlugin('file.js');     // both file.js and dir/file.js ignored
new IgnoreEmitPlugin(/\/file\.js/);  // only dir/file.js is ignored
new IgnoreEmitPlugin(/^file\.js/);   // only file.js is ignored

I want to help!

Contribution would be much appreciated.
Either by creating pull requests of opening issues.

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