Created
March 3, 2016 14:25
-
-
Save ewistrand/eeeeef6e78fd9df32512 to your computer and use it in GitHub Desktop.
Revisions
-
ewistrand created this gist
Mar 3, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ var gulp = require('gulp'); var sass = require('gulp-sass'); gulp.task('styles', function() { gulp.src('sass/**/*.scss') .pipe(sass().on('error', sass.logError)) .pipe(gulp.dest('./')); }); //Watch task gulp.task('default',function() { gulp.watch('sass/**/*.scss',['styles']); });