postcss-custom-properties
Advanced tools
Comparing version
# 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 @@ |
{ | ||
"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
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
37560
1.82%111
1.83%1
-50%