postcss-normalize-url
Advanced tools
Comparing version
@@ -0,1 +1,6 @@ | ||
# 2.0.2 | ||
* Addresses an issue where relative path separators were converted to | ||
backslashes on Windows. | ||
# 2.0.1 | ||
@@ -2,0 +7,0 @@ |
@@ -20,3 +20,3 @@ 'use strict'; | ||
} | ||
return path.normalize(url); | ||
return path.normalize(url).replace(new RegExp('\\' + path.sep, 'g'), '/'); | ||
} | ||
@@ -23,0 +23,0 @@ |
{ | ||
"name": "postcss-normalize-url", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Normalize URLs with PostCSS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
6723
2.33%