PostCSS plugin that creates an atomised stylesheet from a standard one, and provides a json map from the original classes to the atomic ones.
It will turn this:
.one {
background-color: red;
margin: 1rem;
}
.two {
background-color: red;
margin-top: 1rem;
}
@media (min-width: 100px) {
.two:hover {
background-color: hotpink;
}
}
into this:
.a { background-color: red; }
.b { margin-top: 1rem; }
.c { margin-right: 1rem; }
.d { margin-bottom: 1rem; }
.e { margin-left: 1rem; }
@media (min-width: 100px) {
.f:hover { background-color: hotpink; }
}
and this:
{
"one": ["a", "b", "c"," d", "e"],
"two": ["a", "b", "f"]
}
The idea is that in development, you leave your big stylesheet alone, with sourcemaps etc all intact. In production though, you would inline the atomic CSS and then using the json map, transform the following:
<div class="one"></div>
<div class="two"></div>
into:
<div class="a b c d e f"></div>
<div class="a c g h"></div>
This means you should be able to write your CSS in a super-modular way, without worrying about the bloat.
- only single class selectors can be used (it will warn you if use other selectors)
- pseudo selectors are fine
- multiple/duplicate selectors are fine
Selector | Ok |
---|---|
.a:b { } |
✅ |
.a, .b { } |
✅ |
.a { }; .a { } |
✅ |
.a .b { } |
❌ |
.a.b { } |
❌ |
a { } |
❌ |
a b { } |
❌ |
#a { } |
❌ |
a[b] { } |
❌ |
a > b { } |
❌ |
a + b { } |
❌ |
a ~ b { } |
❌ |
* |
❌ |
All elements can only use one class from the stylesheet that will be atomised. This means that every element is completely isolated from the rest. And because it reduces a stylesheet to only its resolved declarations, any duplication across rules will be eradicated.
import postcss from 'postcss';
import atomised from 'postcss-atomised';
const options = {
json: path_to_where_the_json_should_go
};
postcss([atomised(options)]).process(css).then(result => {
// do something with `result`
});
Run npm start
to run the Ava test runner in watch mode, or npm test
for a one-off.
As it's a PostCSS plugin, their caveat about v0.10 applies.