postcss-url
Advanced tools
Comparing version 1.3.1 to 2.0.0
@@ -0,1 +1,6 @@ | ||
# 2.0.0 - 2015-01-26 | ||
- Added: compatibility with postcss v4.x | ||
- Removed: compatibility with postcss v3.x | ||
# 1.3.1 - 2015-01-26 | ||
@@ -2,0 +7,0 @@ |
@@ -46,3 +46,3 @@ /** | ||
function processDecl(decl, from, to, mode, options) { | ||
var dirname = path.dirname(decl.source.file) | ||
var dirname = decl.source && decl.source.input ? path.dirname(decl.source.input.file) : process.cwd() | ||
decl.value = reduceFunctionCall(decl.value, "url", function(value) { | ||
@@ -49,0 +49,0 @@ // save quote style |
{ | ||
"name": "postcss-url", | ||
"version": "1.3.1", | ||
"version": "2.0.0", | ||
"description": "PostCSS plugin to rebase or inline on url().", | ||
@@ -27,6 +27,6 @@ "keywords": [ | ||
"dependencies": { | ||
"directory-encoder": "^0.6.1", | ||
"js-base64": "^2.1.5", | ||
"mime": "^1.2.11", | ||
"reduce-function-call": "^1.0.1", | ||
"directory-encoder": "^0.6.1" | ||
"reduce-function-call": "^1.0.1" | ||
}, | ||
@@ -36,4 +36,4 @@ "devDependencies": { | ||
"jshint": "^2.5.6", | ||
"postcss": "^3.0.0", | ||
"postcss-import": "^2.0.0", | ||
"postcss": "^4.0.2", | ||
"postcss-import": "^5.0.0", | ||
"tape": "^3.0.0" | ||
@@ -40,0 +40,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
10399