Abell CSS Minifier is a plugin for the Abell static site generator that minifies static CSS files. Version 1.0.0 (current) works with Abell ^0.6.4. It has zero runtime dependencies and operates as a build plugin. Unlike general CSS minifiers, it integrates directly into the Abell plugin system, automatically processing CSS during the build. The plugin is rarely updated, last released in 2020, and is intended for users of the Abell framework who want a simple, dependency-free minification step for static CSS assets.
npm install abell-css-minifierNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to configure abell-css-minifier as a plugin in an Abell project, specifying the path to CSS files.
Ensure all static CSS files are placed in the cssPath directory. Inline styles must be minified separately.
Check Abell version compatibility. If using a newer Abell, look for an updated version or alternative plugin.
Use a dedicated CSS minification tool like clean-css or cssnano if you need more control.
Run 'npm install --save-dev abell-css-minifier' in your project root.
Add 'minifier: { cssPath: "static/css" }' to your abell.config.js.Create the directory or update the cssPath to point to an existing directory containing CSS files.