Created
April 24, 2018 09:33
-
-
Save mattb20/9d0ec430ca5fd18847f729e28a1444a6 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
gulp.task('bootstrap-sass', function() { | |
return gulp.src('./public/bower/bootstrap-sass/lib/*.scss') | |
.pipe(sass()) | |
.pipe(contact('bootstrap.css')) | |
.pipe(gulp.dest('./public/dist/css')); | |
}); | |
gulp.task('site-sass', function() { | |
return gulp.src('./public/app/scss/*.scss') | |
.pipe(sass()) | |
.pipe(contact('site.css')) | |
.pipe(gulp.dest('./public/dist/css')); | |
}); | |
gulp.task('sass', ['bootstrap-sass', 'site-sass']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment