Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postcss-import

Package Overview
Dependencies
Maintainers
2
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-import - npm Package Compare versions

Comparing version 8.0.1 to 8.0.2

5

CHANGELOG.md

@@ -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 @@

3

lib/parse-statements.js

@@ -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 (

4

package.json
{
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc