1.0.0 • Published 6 years ago

filter-entry-output-plugin v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

filter-entry-output-plugin

Webpack plugin to filter output files based on the entry points.

Installation

yarn add filter-entry-output-plugin -D

Usage

Use the plugin to remove unwanted output files, such as JS stubs that are getting created when abusing webpack as a pure SASS compiler. For example, in the following scenario normally not only a theme.css but also a theme.js file would get emitted for the theme entry point; the plugin can be used to remove those unnecessary webpack bootstrap files from SCSS-only entry points:

// webpack.config.js
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const FilterEntryOutputPlugin = require('filter-entry-output-plugin')
const path = require('path')

module.exports = {
  entry: {
    main: './src/index.js',
    theme: './src/theme.scss'
  },
  output: {
    filename: '[name].js',
    path: path.join(__dirname, 'dist')
  },
  module: {
    rules: [{
      test: /\.scss$/,
      use: [
        MiniCssExtractPlugin.loader,
        'css-loader',
        'sass-loader'
      ]
    }]
  },
  plugins: [
    new MiniCssExtractPlugin({
      filename: '[name].css'
    }),
    new FilterEntryOutputPlugin({
      test: /\.scss$/,
      remove: /\.js$/,
    })
  ],
}

Options

  • test -- The entry files for which the output should get filtered.Type: RegExpDefault: /\.(c|sc|sa)ss$/
  • remove -- The output files that should get removed, as specified in the filename options of the output and plugin configurations etc.Type: RegExpDefault: /\.js$/
  • exclude -- Exclude entry files (overrides test).Type: RegExp|booleanDefault: false
  • keep -- Output files to keep (overrides remove).Type: RegExp|booleanDefault: false
  • multi -- Whether multi-main entry points should get filtered too.Type: booleanDefault: false

Alternatives

You might also have a look at the FilterChunkWebpackPlugin for another approach based purely on output file patterns.

License

MIT @ m3g4p0p