Skip to content

Instantly share code, notes, and snippets.

@mako-taco
Created October 3, 2014 14:19
Show Gist options
  • Save mako-taco/edbfe1996b93d7fe389c to your computer and use it in GitHub Desktop.
Save mako-taco/edbfe1996b93d7fe389c to your computer and use it in GitHub Desktop.
Example Gulpfile
gulp.task('sass', function () {
gulp.src('app/styles/**/*.scss')
.pipe(sass())
.pipe(autoprefixer('last 1 version'))
.pipe(gulp.dest('dist/styles'));
});
gulp.task('default', function() {
gulp.run('sass');
gulp.watch('app/styles/**/*.scss', function() {
gulp.run('sass');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment