Skip to content

Instantly share code, notes, and snippets.

@janit
Last active March 6, 2016 08:14
Show Gist options
  • Save janit/e68f5bb223b436d10d8d to your computer and use it in GitHub Desktop.
Save janit/e68f5bb223b436d10d8d to your computer and use it in GitHub Desktop.
gulp.task('sass', function() {
return gulp.src('scss/app.scss')
.pipe($.sass({
includePaths: sassPaths
})
.on('error', $.sass.logError))
.pipe($.autoprefixer({
browsers: ['last 2 versions', 'ie >= 9']
}))
.pipe(gulp.dest('../public/dist'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment