gulp.task('css', function () {
return gulp.src('css/style.css')
.pipe(plumber())
.pipe(sourcemaps.init())
.pipe(postcss([
postcssImport(),
postcssPresetEnv({
stage: 0
})
]))
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest('build/css'))
.pipe(browserSync.stream());
});