Socket
Socket
Sign inDemoInstall

postcss-custom-properties

Package Overview
Dependencies
5
Maintainers
4
Versions
85
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 12.1.8 to 12.1.9

19

CHANGELOG.md
# Changes to PostCSS Custom Properties
### 12.1.9 (September 14, 2022)
- Prevent duplicate code generation.
```diff
.foo {
order: 1;
order: var(--my-order, 1);
}
/* becomes */
.foo {
order: 1;
- order: 1;
order: var(--my-order, 1);
}
```
### 12.1.8 (June 10, 2022)

@@ -4,0 +23,0 @@

6

package.json
{
"name": "postcss-custom-properties",
"description": "Use Custom Properties Queries in CSS",
"version": "12.1.8",
"version": "12.1.9",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",

@@ -38,6 +38,6 @@ "contributors": [

"peerDependencies": {
"postcss": "^8.4"
"postcss": "^8.2"
},
"devDependencies": {
"postcss-import": "^14.0.2"
"postcss-import": "^15.0.0"
},

@@ -44,0 +44,0 @@ "scripts": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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