theprotein / postcss-shortcss

PostCSS plugin for disassemble and assemble CSS properties

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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') ])

About

PostCSS plugin for disassemble and assemble CSS properties

License:MIT License


Languages

Language:JavaScript 100.0%