gulp-csscomb
gulp-csscomb copied to clipboard
not using options object
Hi,
I'm passing some custom options to the comber pipe likeaso;
.pipe(csscomb(sassConfig.comb))
however gulp-csscomb doesn't use my custom object.
I have remedied this by editing css comb directly at line 62 and changing it from:
var comb = new Comb(config || 'csscomb');
to
var comb = new Comb(config || options || 'csscomb');
Edit: have submitted pull request