File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ module.exports = function(options) {
21
21
this . emit ( 'end' ) ;
22
22
} )
23
23
. pipe ( $ . if ( config . css . autoprefix . enabled , $ . autoprefixer ( config . css . autoprefix . options ) ) )
24
- . pipe ( $ . concat ( options . output . name , { rebaseUrls : false , inlineImports : false } ) )
24
+ . pipe ( $ . concat ( options . output . name ) )
25
25
. pipe ( $ . if ( config . production , $ . minifyCss ( config . css . minifyCss . pluginOptions ) ) )
26
26
. pipe ( $ . if ( config . sourcemaps , $ . sourcemaps . write ( '.' ) ) )
27
27
. pipe ( gulp . dest ( options . output . baseDir ) )
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ var gulpTask = function(paths) {
50
50
gulp
51
51
. src ( paths . src . path )
52
52
. pipe ( $ . if ( config . sourcemaps , $ . sourcemaps . init ( ) ) )
53
- . pipe ( $ . concatCss ( paths . output . name , { rebaseUrls : false , inlineImports : false } ) )
53
+ . pipe ( $ . concat ( paths . output . name ) )
54
54
. pipe ( $ . if ( config . production , $ . minifyCss ( config . css . minifyCss . pluginOptions ) ) )
55
55
. pipe ( $ . if ( config . sourcemaps , $ . sourcemaps . write ( '.' ) ) )
56
56
. pipe ( gulp . dest ( paths . output . baseDir ) )
You can’t perform that action at this time.
0 commit comments