Include CSS files in minification (#23)

Include CSS files in minification
This commit is contained in:
Qstick 2017-07-08 08:05:49 -04:00 committed by Joseph Milazzo
parent 8a68e87128
commit f1eb8a7d8d
3 changed files with 7 additions and 5 deletions

View file

@ -25,7 +25,7 @@ gulp.task('copyHtml', function () {
});
gulp.task('copyContent', function () {
return gulp.src([paths.src.content + '**/*.*', '!**/*.less'])
return gulp.src([paths.src.content + '**/*.*', '!**/*.less', '!**/*.css'])
.pipe(gulp.dest(paths.dest.content))
.pipe(livereload());
});