Skip to content

Instantly share code, notes, and snippets.

View shaneckel's full-sized avatar
🙏

Shane Eckel shaneckel

🙏
View GitHub Profile
gulp.task('sass', function() {

return gulp.src(config.sass.app)
.pipe(sass({
outputStyle:'compressed'
}))
.on('error', errors)
.pipe(autoprefix("last 2 versions", "> 1%", "ie 6"))
.pipe(gulp.dest(config.sass.public))
.pipe(gulpif(!global.isProd, livereload()))
});