postcss-import
Advanced tools
Comparing version 8.0.1 to 8.0.2
@@ -0,1 +1,6 @@ | ||
# 8.0.2 - 2015-01-27 | ||
- Fixed: Comments between imports statements are ignored | ||
([#164](https://github.com/postcss/postcss-import/pull/164)) | ||
# 8.0.1 - 2015-01-27 | ||
@@ -2,0 +7,0 @@ |
@@ -73,2 +73,5 @@ var valueParser = require("postcss-value-parser") | ||
var prev = atRule.prev() | ||
while (prev && prev.type === "comment") { | ||
prev = prev.prev() | ||
} | ||
if (prev) { | ||
@@ -75,0 +78,0 @@ if ( |
{ | ||
"name": "postcss-import", | ||
"version": "8.0.1", | ||
"version": "8.0.2", | ||
"description": "PostCSS plugin to import CSS files", | ||
@@ -35,3 +35,3 @@ "keywords": [ | ||
"scripts": { | ||
"lint": "eslint .", | ||
"lint": "eslint --fix .", | ||
"pretest": "npm run lint", | ||
@@ -38,0 +38,0 @@ "test": "ava", |
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
28777
502