You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: