A Metalsmith plugin to remove unused CSS rules.
This plugin works by removing rules in every CSS file that don't match any content in any HTML files.
CSS files aren't moved or combined in any way, only the content of the files is changed. You can use plugins such as metalsmith-renamer or metalsmith-concat to rename or combine your CSS files before or after this plugin.
You might also want to consider minifying your CSS files after this plugin using @metalsmith/postcss with cssnano or another similar plugin.
npm install --save metalsmith-css-unusedimport Metalsmith from 'metalsmith';
import cssUnused from 'metalsmith-css-unused';
Metalsmith(__dirname)
.use(cssUnused({
// options here
}))
.build((err) => {
if (err) {
throw err;
}
});Type: string Default: "**/*.html"
A micromatch glob pattern to find HTML files.
Type: string Default: "**/*.css"
A micromatch glob pattern to find CSS files.
Type: object Default: {}
An object of PurgeCSS options.
import Metalsmith from 'metalsmith';
import cssUnused from 'metalsmith-css-unused';
Metalsmith(__dirname)
.use(cssUnused({
purgecss: {
safelist: [
// Bootstrap 4 JavaScript
/\.carousel-item-.+/,
/\.modal/,
/\.show/
]
}
}))