扫一扫分享
Dropcss 是一个用来清理无用 CSS 的小工具,它根据 html 和 CSS 作为输入并返回那些有用到的 CSS 信息。 DropCSS删除所有未使用的样式块、重复的选择器、@keyframes等等。高度优化,速度极快。
npm install -D dropcss
const dropcss = require('dropcss');
let html = `
<html>
<head></head>
<body>
<p>Hello World!</p>
</body>
</html>
`;
let css = `
.card {
padding: 8px;
}
p:hover a:first-child {
color: red;
}
`;
const whitelist = /#foo|\.bar/;
let dropped = new Set();
let cleaned = dropcss({
html,
css,
shouldDrop: (sel) => {
if (whitelist.test(sel))
return false;
else {
dropped.add(sel);
return true;
}
},
});
console.log(cleaned.css);
console.log(dropped);
手机预览