Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Last active May 12, 2016 19:00
Show Gist options
  • Select an option

  • Save jacobp100/bca552e656221fa091a0cba3ee822353 to your computer and use it in GitHub Desktop.

Select an option

Save jacobp100/bca552e656221fa091a0cba3ee822353 to your computer and use it in GitHub Desktop.
import gulp from 'gulp';
import sass from 'gulp-sass';
gulp.task('compile-bootstrap', () => (
gulp.src('scss/bootstrap.scss')
.pipe(sass())
.pipe(gulp.dest('styles'))
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment