mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Include CSS files in minification (#23)
Include CSS files in minification
This commit is contained in:
parent
8a68e87128
commit
f1eb8a7d8d
3 changed files with 7 additions and 5 deletions
|
@ -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());
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue