nDmitry / grunt-autoprefixer

Parse CSS and add vendor-prefixed CSS properties using the Can I Use database. Based on Autoprefixer.
MIT License
795 stars 60 forks source link

Adding support for excluding files. #83

Closed paroxp closed 9 years ago

paroxp commented 9 years ago

It could be useful in some cases.

nDmitry commented 9 years ago

Grunt has built-in exclusion syntax.

src: ['file.css', '!exluded.css']

http://gruntjs.com/configuring-tasks#globbing-patterns So I don't think the option is needed.

paroxp commented 9 years ago

Aha! Very well good sir!

Thanks for educating me.