Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 413 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 413 Bytes

postcss-shortcss

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;
}

Usage

postcss([ require('postcss-shortcss') ])