Skip to content

Instantly share code, notes, and snippets.

@ixahmedxi
Created February 23, 2018 09:48
Show Gist options
  • Save ixahmedxi/dfadc74f2e57b9ad90892e086afca8a6 to your computer and use it in GitHub Desktop.
Save ixahmedxi/dfadc74f2e57b9ad90892e086afca8a6 to your computer and use it in GitHub Desktop.
Compile Sass with gulp
const gulp = require('gulp')
const sass = require('gulp-sass')
gulp.task('sass', () => {
return (
gulp.src('src/styles/*.scss')
.pipe(sass())
.pipe(gulp.dest('./dist/'))
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment