0.0.3 • Published 10 years ago

rework-suffix v0.0.3

Weekly downloads
16
License
-
Repository
github
Last release
10 years ago

rework-suffix

visionmedia/rework plugin for adding suffixes to CSS declarations, e.g. !important.

Example

/* input.css */
body {
  color: red;
}
/* rework.js */
...

var important = require('rework-suffix') 
// uses !important suffix by default

var css = rework(read('input.css', 'utf8'))
  .use(important)
  .toString()

write('output.css', css)
...
/* output.css */
body {
  color: red !important;
}
0.0.3

10 years ago

0.0.2

11 years ago