gulp-csscomb icon indicating copy to clipboard operation
gulp-csscomb copied to clipboard

not using options object

Open maxcbc opened this issue 9 years ago • 0 comments

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

maxcbc avatar Feb 26 '16 14:02 maxcbc