Rework plugin adds a suffix to all declarations e.g. !important.
npm install rework-suffix[visionmedia/rework] plugin for adding suffixes to CSS declarations,
e.g. !important.
``css`
/ input.css /
body {
color: red;
}
`js
/ 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)
...
`
`css``
/ output.css /
body {
color: red !important;
}