Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

stylis-atomic

thysultan4MIT0.0.1

stylis plugin to create atomic css

stylis, plugin

readme

atomics

stylis plugin to create atomic css by taking an input such as

a {
    color:red;
}

b {
    color:red;
    display:block;
}

c {
    color:red;
    display: block;
}

d {
    color:red;
    display:block;
}

and converting it to

a,b,c,d{color:red}b,c,d{display:block}

since properties are shared between rules atomicly the compression scales with the number of unique properties used.