Socket
Socket
Sign inDemoInstall

autoprefixer

Package Overview
Dependencies
13
Maintainers
1
Versions
243
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 10.4.17 to 10.4.18

8

lib/processor.js

@@ -715,3 +715,9 @@ let parser = require('postcss-value-parser')

withHackValue(decl) {
return decl.prop === '-webkit-background-clip' && decl.value === 'text'
return (
(decl.prop === '-webkit-background-clip' && decl.value === 'text') ||
// Do not remove -webkit-box-orient when -webkit-line-clamp is present.
// https://github.com/postcss/autoprefixer/issues/1510
(decl.prop === '-webkit-box-orient' &&
decl.parent.some(d => d.prop === '-webkit-line-clamp'))
)
}

@@ -718,0 +724,0 @@ }

6

package.json
{
"name": "autoprefixer",
"version": "10.4.17",
"version": "10.4.18",
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",

@@ -42,4 +42,4 @@ "engines": {

"dependencies": {
"browserslist": "^4.22.2",
"caniuse-lite": "^1.0.30001578",
"browserslist": "^4.23.0",
"caniuse-lite": "^1.0.30001591",
"fraction.js": "^4.3.7",

@@ -46,0 +46,0 @@ "normalize-range": "^0.1.2",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc