0.0.1 • Published 8 years ago

pc__search_id_in_css v0.0.1

Weekly downloads
5
License
-
Repository
github
Last release
8 years ago

Search id in CSS

This is plugin for nmp-package "Post-Compression".
He's searching for the value of "id" in the CSS code.

An example of using:

var searchIdInCSS = require("pc__search_id_in_css"),
    uniqueNames = {};
 
gulp.src("./*.css")
    .pipe(postCompression.search([
        searchIdInCSS()
    ], uniqueNames));

Where:

  • uniqueNames - an object of type JSON with rules replace the long words to short words.

An example of CSS code:

#someIdA,
#someIdA #someIdB {
    ...
}

An example of a result searching:

{
    "someIdA": 2,
    "someIdB": 1
}