Skip to content

Instantly share code, notes, and snippets.

@ewistrand
Created March 3, 2016 14:25
Show Gist options
  • Select an option

  • Save ewistrand/eeeeef6e78fd9df32512 to your computer and use it in GitHub Desktop.

Select an option

Save ewistrand/eeeeef6e78fd9df32512 to your computer and use it in GitHub Desktop.

Revisions

  1. ewistrand created this gist Mar 3, 2016.
    13 changes: 13 additions & 0 deletions gulpfile.js
    Original 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']);
    });