Skip to content

Instantly share code, notes, and snippets.

@gmann1982
Created November 30, 2016 10:27
Show Gist options
  • Save gmann1982/7dac854ace898dd828ffaff2daf9e90a to your computer and use it in GitHub Desktop.
Save gmann1982/7dac854ace898dd828ffaff2daf9e90a to your computer and use it in GitHub Desktop.
gulpfile
'use strict';
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('sass', function () {
return gulp.src('./styles/bootstrap.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./public/css'));
});
gulp.task('sass:watch', function () {
gulp.watch('./styles/**/*.scss', ['sass']);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment