File tree Expand file tree Collapse file tree 2 files changed +7
-14
lines changed Expand file tree Collapse file tree 2 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -31,20 +31,9 @@ gulp.task('less', function() {
31
31
32
32
if ( phantom ) {
33
33
src = [
34
- paths . src . content + 'bootstrap.less' ,
35
- paths . src . content + 'theme.less' ,
36
- paths . src . content + 'sonarr.less' ,
37
- paths . src . content + 'overrides.less' ,
38
- paths . src . root + 'Series/series.less' ,
39
- paths . src . root + 'Activity/activity.less' ,
40
- paths . src . root + 'AddSeries/AddSeries.less' ,
41
- paths . src . root + 'Calendar/calendar.less' ,
42
- paths . src . root + 'Cells/cells.less' ,
43
- paths . src . root + 'ManualImport/manualimport.less' ,
44
- paths . src . root + 'Settings/settings.less' ,
45
- paths . src . root + 'System/Logs/logs.less' ,
46
- paths . src . root + 'System/Update/update.less' ,
47
- paths . src . root + 'System/Info/info.less'
34
+ paths . src . content + 'Bootstrap/bootstrap.less' ,
35
+ paths . src . content + 'Vendor/vendor.less' ,
36
+ paths . src . content + 'sonarr.less'
48
37
] ;
49
38
}
50
39
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ var stripBom = function (dest) {
7
7
. pipe ( stripbom ( { showLog : false } ) )
8
8
. pipe ( gulp . dest ( dest ) ) ;
9
9
10
+ gulp . src ( paths . src . less )
11
+ . pipe ( stripbom ( { showLog : false } ) )
12
+ . pipe ( gulp . dest ( dest ) ) ;
13
+
10
14
gulp . src ( paths . src . templates )
11
15
. pipe ( stripbom ( { showLog : false } ) )
12
16
. pipe ( gulp . dest ( dest ) ) ;
You can’t perform that action at this time.
0 commit comments