rework-deduplicate

0.1.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i rework-deduplicate

Weekly Downloads

2

Version

0.1.1

License

MIT

Last publish

Collaborators

  • dam