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

postcss-import

Package Overview
Dependencies
Maintainers
1
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 5.2.0 to 5.2.1

4

CHANGELOG.md

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

2

index.js

@@ -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": [

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