1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

include css files in minification

This commit is contained in:
Drew Freyling
2017-04-29 10:47:13 +10:00
committed by Mark McDowall
parent 0c89a4ae8f
commit 410aa467b8
3 changed files with 7 additions and 3 deletions
+1 -1
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());
});