postcss-import
Advanced tools
Comparing version 5.2.0 to 5.2.1
@@ -0,1 +1,5 @@ | ||
# 5.2.1 - 2015-04-17 | ||
- Fixed: glob import now works with single quote `@import` ([#36](https://github.com/postcss/postcss-import/pull/36)) | ||
# 5.2.0 - 2015-04-15 | ||
@@ -2,0 +6,0 @@ |
@@ -111,3 +111,3 @@ "use strict"; | ||
function parseGlob(atRule, options, imports) { | ||
var globPattern = atRule.params.replace(/"/g, "") | ||
var globPattern = atRule.params.replace(/['"]/g, "").replace(/(?:url\(|\))/g, "") | ||
var files = [] | ||
@@ -114,0 +114,0 @@ var dir = options.source && options.source.input && options.source.input.file ? |
{ | ||
"name": "postcss-import", | ||
"version": "5.2.0", | ||
"version": "5.2.1", | ||
"description": "PostCSS plugin to import CSS files", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
21416