A well-tested CSS minifier providing fast and efficient CSS optimization and minification.
93
Quality
Pending
Does it follow best practices?
Impact
93%
1.17xAverage score across 10 eval scenarios
Pending
The risk profile of this skill
Build a CSS bundler that combines multiple CSS modules from different sources into a single optimized stylesheet.
Your tool should accept CSS content from multiple named sources (such as different component stylesheets) and combine them into a single minified output file. Each source should be identifiable by name so that errors and warnings can be traced back to their origin.
The bundler should:
bundle.css@generates
/**
* Bundles CSS from multiple named sources into a single minified file.
*
* @param {Object} sources - An object where keys are source names and values are CSS strings
* @param {string} outputPath - Path where the bundled CSS should be written
* @returns {Object} Result object containing styles, errors, warnings, and stats
*/
function bundleCSS(sources, outputPath) {
// IMPLEMENTATION HERE
}
module.exports = { bundleCSS };Provides CSS minification and optimization capabilities.
docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10