Приветствую. Не подскажете, почему таски style и html тормозят(style - >30 секунд)? Может я что-то неправильно указываю или неправильно комбинирую плагины?
//=======================================================
// Style
//=======================================================
gulp.task('style', function () {
return gulp.src(path.src.style)
.pipe(plugins.newer(path.dist.css))
.pipe(plugins.plumber())
.pipe(plugins.sourcemaps.init())
.pipe(plugins.sass.sync())
.pipe(gulp.dest(path.src.css))
.pipe(plugins.csso())
.pipe(plugins.rename({suffix: '.min'}))
.pipe(plugins.sourcemaps.write())
.pipe(gulp.dest(path.dist.css))
.pipe(reload({stream: true}));
});
//=======================================================
// HTML
//=======================================================
gulp.task('html', function () {
return gulp.src(path.src.html)
.pipe(plugins.newer(path.dist.html))
.pipe(plugins.rigger())
.pipe(plugins.removeHtmlComments())
.pipe(plugins.replace(/^\s*\n/mg, ''))
.pipe(gulp.dest(path.dist.html))
.pipe(reload({stream: true}));
});