PostCSS plugin for disassemble and assemble CSS properties. It work on shortcss library.
Before:
.foo {
list-style: none;
}
After:
.foo {
list-style-type: none;
list-style-position: none;
list-style-image: none;
}
postcss([ require('postcss-shortcss') ])