Hello,
I try to use this plugin with my own config file too like #4. I've tried all ways but my config file is always ignored ...
Here it's my gulpfile :
const gulp_csscomb = require('gulp-csscomb')
gulp.task('sass', function() {
return gulp.src(srcSass)
.pipe(gulp_sass())
.pipe(gulp_csscomb('./csscomb_dev_config.json'))
.pipe(gulp.dest(publicStyleDest));
});
When I specify .pipe(gulp_csscomb('zen')) or .pipe(gulp_csscomb('yandex')) it tells me "Configuration file not found:" but I haven't any error when I specify my own config.
Hello,
I try to use this plugin with my own config file too like #4. I've tried all ways but my config file is always ignored ...
Here it's my gulpfile :
When I specify
.pipe(gulp_csscomb('zen'))or.pipe(gulp_csscomb('yandex'))it tells me "Configuration file not found:" but I haven't any error when I specify my own config.