postcss-normalize-url
Advanced tools
Comparing version
@@ -0,1 +1,6 @@ | ||
# 3.0.5 | ||
* Fixes an issue where base64 encoded OpenType font urls were being erroneously | ||
converted by the module (thanks to @ln-e). | ||
# 3.0.4 | ||
@@ -2,0 +7,0 @@ |
@@ -48,3 +48,3 @@ 'use strict'; | ||
if (~url.value.indexOf('data:image/') || ~url.value.indexOf('data:application/')) { | ||
if (~url.value.indexOf('data:image/') || ~url.value.indexOf('data:application/') || ~url.value.indexOf('data:font/')) { | ||
return false; | ||
@@ -51,0 +51,0 @@ } |
{ | ||
"name": "postcss-normalize-url", | ||
"version": "3.0.4", | ||
"version": "3.0.5", | ||
"description": "Normalize URLs with PostCSS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
8052
2.17%