Skip to content

Instantly share code, notes, and snippets.

@LeoLeBras
Created August 4, 2015 08:19
Show Gist options
  • Save LeoLeBras/0c362eaa447ebc7d7225 to your computer and use it in GitHub Desktop.
Save LeoLeBras/0c362eaa447ebc7d7225 to your computer and use it in GitHub Desktop.
/**
* Sass task
*
*/
gulp.task('sass', function() {
gulp.src([srcDir + 'sass/*.scss'])
.pipe(sass())
.on('error', function (err) {
console.log(err.message + ' on line ' + err.lineNumber + ' in file : ' + err.fileName);
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment