Skip to content

Instantly share code, notes, and snippets.

@DmitriBarannyk
Created October 22, 2018 18:02
Show Gist options
  • Save DmitriBarannyk/86384ffc4086cef1d9b6c0348b59c939 to your computer and use it in GitHub Desktop.
Save DmitriBarannyk/86384ffc4086cef1d9b6c0348b59c939 to your computer and use it in GitHub Desktop.
goal
ulp.task('sass', function(){ // Создаем таск "sass"
return gulp.src('app/sass/**/*.sass') // Берем источник
.pipe(sass()) // Преобразуем Sass в CSS посредством gulp-sass
.pipe(gulp.dest('app/css')) // Выгружаем результата в папку app/css
.pipe(browserSync.reload({stream: true})) // Обновляем CSS на странице при изменении
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment