postcss-reduce-transforms 9.0.0 → 9.0.2
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 +2 -2
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ npm install postcss-reduce-transforms --save
|
|
|
13
13
|
## Example
|
|
14
14
|
|
|
15
15
|
This module will reduce transform functions where possible. For more examples,
|
|
16
|
-
see the [tests](
|
|
16
|
+
see the [tests](test).
|
|
17
17
|
|
|
18
18
|
### Input
|
|
19
19
|
|
|
@@ -38,7 +38,7 @@ examples for your environment.
|
|
|
38
38
|
|
|
39
39
|
## Contributors
|
|
40
40
|
|
|
41
|
-
See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/
|
|
41
|
+
See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/main/CONTRIBUTORS.md).
|
|
42
42
|
|
|
43
43
|
## License
|
|
44
44
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postcss-reduce-transforms",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.2",
|
|
4
4
|
"description": "Reduce transform functions 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
|
"files": [
|
|
12
15
|
"LICENSE-MIT",
|
|
13
16
|
"src",
|
|
@@ -34,10 +37,10 @@
|
|
|
34
37
|
"node": "^22.22.3 || ^24.15.0 || >=26.0"
|
|
35
38
|
},
|
|
36
39
|
"devDependencies": {
|
|
37
|
-
"postcss": "^8.5.
|
|
40
|
+
"postcss": "^8.5.28"
|
|
38
41
|
},
|
|
39
42
|
"peerDependencies": {
|
|
40
|
-
"postcss": "^8.5.
|
|
43
|
+
"postcss": "^8.5.28"
|
|
41
44
|
},
|
|
42
45
|
"type": "module",
|
|
43
46
|
"scripts": {
|