File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ module.exports = function(content) {
8
8
var isRequireUrl = ! this || ! this . options || ! this . options . css ||
9
9
typeof this . options . css . requireUrl === "string" ;
10
10
var requireUrl = this && this . options && this . options . css &&
11
- this . options . css . requireUrl ||
12
- " file!";
11
+ this . options . css . requireUrl ;
12
+ if ( typeof requireUrl !== "string" ) requireUrl = "! file!";
13
13
var result = [ ] ;
14
14
var tree = csso . parse ( content , "stylesheet" ) ;
15
15
if ( this && this . minimize )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " css-loader" ,
3
- "version" : " 0.5.0 " ,
3
+ "version" : " 0.5.1 " ,
4
4
"author" : " Tobias Koppers @sokra" ,
5
5
"description" : " css loader module for webpack" ,
6
6
"dependencies" : {
You can’t perform that action at this time.
0 commit comments