css-relative-url-loader
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -7,2 +7,3 @@ const path = require('path'); | ||
const query = loaderUtils.parseQuery(this.query); | ||
const prefix = query.prefix || ''; | ||
@@ -15,4 +16,4 @@ if (!query.root) { | ||
return content.replace(/url\([\'\"]?([^'"]+)[\'\"]?\)/g, | ||
(str, filePath) => `url('${path.join(relative, filePath)}')` | ||
(str, filePath) => `url('${prefix + path.join(relative, filePath)}')` | ||
); | ||
}; |
{ | ||
"name": "css-relative-url-loader", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Loader for webpack, replace relative paths in css with root", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42230
13