postcss-url
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,5 @@ | ||
# 1.1.1 - 2014-10-30 | ||
- Fix bug which leads to not correct base64 code | ||
# 1.1.0 - 2014-10-29 | ||
@@ -2,0 +6,0 @@ |
@@ -128,3 +128,3 @@ /** | ||
else { | ||
file = fs.readFileSync(file).toString() | ||
file = fs.readFileSync(file) | ||
newPath = "data:" + mimeType + ";base64," + base64.encode(file) | ||
@@ -131,0 +131,0 @@ } |
{ | ||
"name": "postcss-url", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "PostCSS plugin to rebase or inline on url().", | ||
@@ -24,3 +24,2 @@ "keywords": [ | ||
"LICENSE", | ||
"README.md", | ||
"index.js" | ||
@@ -27,0 +26,0 @@ ], |
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
8141