atrolov / grunt-revizor

Grunt plugin for compression CSS classes and identifiers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Execute without specifying nameSuffix and compressFilePrefix

celsomtrindade opened this issue · comments

Is it possible to runt the tasks but disable these 2 options? Or use it as blank string? Like this:

revizor: {
        options: {
            compressFilePrefix: '', //or compressFilePrefix: false
            nameSuffix: '' //or nameSuffix: false
        },
        ....
}

Because I want to be able to select all of my class names, doesn't matter if it ends with __ or other pattern. Also, I don't want to rename the file after that, because there are other tasks involved, or simply because it doesn't make sense. I'll not be using index-min.html, it's just index.html.

Currently, if setting to false, the output will be something like indexfalse.html and if leave it as empty string, nothing happens.