🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

postcss-normalize-url

Package Overview
Dependencies
Maintainers
2
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-normalize-url - npm Package Compare versions

Comparing version

to
3.0.2

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 3.0.2
* Fixes incorrect minification of chrome-extension urls.
# 3.0.1

@@ -2,0 +6,0 @@

4

index.js

@@ -70,3 +70,5 @@ 'use strict';

url.value = url.value.trim();
url.value = convert(url.value, opts);
if (!~url.value.indexOf('chrome-extension')) {
url.value = convert(url.value, opts);
}

@@ -73,0 +75,0 @@ if (escapeChars.test(url.value)) {

{
"name": "postcss-normalize-url",
"version": "3.0.1",
"version": "3.0.2",
"description": "Normalize URLs with PostCSS",

@@ -26,5 +26,5 @@ "main": "index.js",

"is-absolute-url": "^2.0.0",
"normalize-url": "^1.3.0",
"normalize-url": "^1.3.1",
"object-assign": "^4.0.1",
"postcss": "^5.0.4",
"postcss": "^5.0.8",
"postcss-value-parser": "^2.0.2"

@@ -36,3 +36,3 @@ },

"tap-spec": "^4.1.0",
"tape": "^4.2.0"
"tape": "^4.2.1"
},

@@ -39,0 +39,0 @@ "homepage": "https://github.com/ben-eb/postcss-normalize-url",