Last active
May 12, 2016 19:00
-
-
Save jacobp100/bca552e656221fa091a0cba3ee822353 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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