postcss-merge-rules 9.0.1 → 9.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +12 -9
- package/src/data/propertyGroups.json +6 -0
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postcss-merge-rules",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.3",
|
|
4
4
|
"description": "Merge CSS rules with PostCSS.",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./types/index.d.ts",
|
|
8
8
|
"default": "./src/index.js"
|
|
9
|
-
}
|
|
9
|
+
},
|
|
10
|
+
"./package.json": "./package.json"
|
|
10
11
|
},
|
|
12
|
+
"main": "./src/index.js",
|
|
13
|
+
"types": "./types/index.d.ts",
|
|
11
14
|
"imports": {
|
|
12
15
|
"#getBrowsersList": {
|
|
13
16
|
"node": "./src/lib/computeBrowsersToSupport.js",
|
|
@@ -37,10 +40,10 @@
|
|
|
37
40
|
"url": "git+https://github.com/cssnano/cssnano.git"
|
|
38
41
|
},
|
|
39
42
|
"dependencies": {
|
|
40
|
-
"browserslist": "^4.28.
|
|
43
|
+
"browserslist": "^4.28.9",
|
|
41
44
|
"caniuse-api": "^4.0.0",
|
|
42
|
-
"cssnano-utils": "^7.0.
|
|
43
|
-
"postcss-selector-parser": "^7.1.
|
|
45
|
+
"cssnano-utils": "^7.0.2",
|
|
46
|
+
"postcss-selector-parser": "^7.1.6"
|
|
44
47
|
},
|
|
45
48
|
"bugs": {
|
|
46
49
|
"url": "https://github.com/cssnano/cssnano/issues"
|
|
@@ -49,13 +52,13 @@
|
|
|
49
52
|
"node": "^22.22.3 || ^24.15.0 || >=26.0"
|
|
50
53
|
},
|
|
51
54
|
"devDependencies": {
|
|
52
|
-
"@webref/css": "8.7.
|
|
53
|
-
"postcss": "^8.5.
|
|
54
|
-
"postcss-discard-comments": "^9.0.
|
|
55
|
+
"@webref/css": "8.7.4",
|
|
56
|
+
"postcss": "^8.5.28",
|
|
57
|
+
"postcss-discard-comments": "^9.0.2",
|
|
55
58
|
"postcss-simple-vars": "^7.0.1"
|
|
56
59
|
},
|
|
57
60
|
"peerDependencies": {
|
|
58
|
-
"postcss": "^8.5.
|
|
61
|
+
"postcss": "^8.5.28"
|
|
59
62
|
},
|
|
60
63
|
"type": "module",
|
|
61
64
|
"scripts": {
|
|
@@ -501,11 +501,13 @@
|
|
|
501
501
|
"max-height",
|
|
502
502
|
"max-inline-size",
|
|
503
503
|
"max-lines",
|
|
504
|
+
"max-size",
|
|
504
505
|
"max-width",
|
|
505
506
|
"min-block-size",
|
|
506
507
|
"min-height",
|
|
507
508
|
"min-inline-size",
|
|
508
509
|
"min-intrinsic-sizing",
|
|
510
|
+
"min-size",
|
|
509
511
|
"min-width",
|
|
510
512
|
"mix-blend-mode",
|
|
511
513
|
"nav-down",
|
|
@@ -678,6 +680,7 @@
|
|
|
678
680
|
"shape-outside",
|
|
679
681
|
"shape-padding",
|
|
680
682
|
"shape-rendering",
|
|
683
|
+
"size",
|
|
681
684
|
"slider-orientation",
|
|
682
685
|
"spatial-navigation-action",
|
|
683
686
|
"spatial-navigation-contain",
|
|
@@ -1403,6 +1406,8 @@
|
|
|
1403
1406
|
"mask-border-source",
|
|
1404
1407
|
"mask-border-width"
|
|
1405
1408
|
],
|
|
1409
|
+
"max-size": ["max-height", "max-width"],
|
|
1410
|
+
"min-size": ["min-height", "min-width"],
|
|
1406
1411
|
"offset": [
|
|
1407
1412
|
"offset-anchor",
|
|
1408
1413
|
"offset-distance",
|
|
@@ -1537,6 +1542,7 @@
|
|
|
1537
1542
|
"scroll-padding-inline-start"
|
|
1538
1543
|
],
|
|
1539
1544
|
"scroll-timeline": ["scroll-timeline-axis", "scroll-timeline-name"],
|
|
1545
|
+
"size": ["height", "width"],
|
|
1540
1546
|
"text-align": ["text-align-all", "text-align-last"],
|
|
1541
1547
|
"text-decoration": [
|
|
1542
1548
|
"text-decoration-color",
|