Created
May 25, 2016 19:53
-
-
Save timothyjensen/272721d5571c41a4b2b386c0e04aaf3a to your computer and use it in GitHub Desktop.
Automate compiling Sass to CSS and browser refresh using BrowserSync
This file contains 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 characters
// Require our dependencies | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var browserSync = require('browser-sync').create(); | |
gulp.task('styles', function(){ | |
return gulp.src('sass/style.scss') | |
.pipe(sass({ | |
outputStyle: 'expanded', // Options: nested, expanded, compact, compressed | |
indentType: 'tab', | |
indentWidth: 1 | |
})) // Converts Sass to CSS with gulp-sass | |
.pipe(gulp.dest('./')) | |
.pipe(browserSync.reload({stream: true})); | |
}); | |
// Gulp watch syntax | |
gulp.task('serve', function(){ | |
// Kick off BrowserSync. | |
browserSync.init({ | |
proxy: "www.example.dev" | |
}); | |
gulp.watch('sass/**/*.scss', ['styles']); | |
}); | |
// Default Gulp task | |
gulp.task('default',['styles', 'serve']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment