Created
February 23, 2018 09:48
-
-
Save ixahmedxi/dfadc74f2e57b9ad90892e086afca8a6 to your computer and use it in GitHub Desktop.
Compile Sass with gulp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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