Registry / devops / suppress-chunks-webpack-plugin

suppress-chunks-webpack-plugin

JSON →
library1.0.6jsnpmunverified

Webpack plugin (v1.0.6) to suppress output files for specified entry chunks, useful when only certain chunk files (e.g., CSS, JS) are needed. Allows regex-based filtering per chunk or globally. No updates since 2017; works with webpack 3 and lower. A niche alternative to webpack's built-in entry options or custom output configuration.

npm install suppress-chunks-webpack-plugin
INSTALL
IMPORT
SIG · SUPPRESS-CHUNKS-WE
S
suppress-chunks-webpack-plugin
devopsjavascriptv1.0.6
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18226 runs
build_error
glibc
node 18226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

SuppressChunksPlugin
var SuppressChunksPlugin = require('suppress-chunks-webpack-plugin');
import SuppressChunksPlugin from 'suppress-chunks-webpack-plugin';
Package does not export ESM; only CommonJS require works.

Suppress output files for entry chunks 'one' and 'foo' in a webpack 3 configuration using CommonJS require.

var SuppressChunksPlugin = require('suppress-chunks-webpack-plugin'); module.exports = { entry: { one: './file.js', foo: './foo.js', bar: './bar.js', main: './index.js', }, output: { path: path.join(__dirname, 'dist'), filename: '[name].js', }, plugins: [ new SuppressChunksPlugin(['one', 'foo']) ] };
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.6latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
11 hits · last 30 days
node
10
Resources
suppress-chunks-webpack-plugin — npm install suppress-chunks-webpack-plugin · libregistry