0.1.1 • Published 10 years ago

rework-deduplicate v0.1.1

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

rework-deduplicate

BuildStatus Rework plugin to remove duplicate class definitions

Install

npm i --save

Usage

var rework = require('rework'),
    dedupe = require('rework-deduplicate'),
    read = require('fs').readFileSync,
    output;

    output = rework(read('path/to/source.css', 'utf8'))
        .use(dedupe());

Example

Input:

.button {
    background: black;
}
.button {
    background: red;
}
.button {
    background: black;
}

Output:

.button {
    background: black;
}
.button {
    background: red;
}