Skip to content

Instantly share code, notes, and snippets.

@christian-rizza
Created May 29, 2016 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christian-rizza/a69fa446714589f466d114e442ae06de to your computer and use it in GitHub Desktop.
Save christian-rizza/a69fa446714589f466d114e442ae06de to your computer and use it in GitHub Desktop.
Compile SASS with Gulp
var sass = require('gulp-sass');
gulp.task('sass', function ()
{
return gulp.src('app/scss/**/*.scss')
.pipe(sass())
.pipe(gulp.dest('app/css'))
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment