postcss-reduce-initial 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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +9 -6
package/README.md CHANGED
@@ -12,7 +12,7 @@ npm install postcss-reduce-initial --save
12
12
 
13
13
  ## Examples
14
14
 
15
- See the [data](data) for more conversions. This data is courtesy
15
+ See the [data](src/data) for more conversions. This data is courtesy
16
16
  of Mozilla.
17
17
 
18
18
  ### Convert `initial` values
@@ -81,7 +81,7 @@ examples for your environment.
81
81
 
82
82
  ## Contributors
83
83
 
84
- See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
84
+ See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/main/CONTRIBUTORS.md).
85
85
 
86
86
  ## License
87
87
 
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "postcss-reduce-initial",
3
- "version": "9.0.0",
3
+ "version": "9.0.2",
4
4
  "description": "Reduce initial definitions to the actual initial value, where possible.",
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",
@@ -36,7 +39,7 @@
36
39
  "url": "git+https://github.com/cssnano/cssnano.git"
37
40
  },
38
41
  "dependencies": {
39
- "browserslist": "^4.28.8",
42
+ "browserslist": "^4.28.9",
40
43
  "caniuse-api": "^4.0.0"
41
44
  },
42
45
  "bugs": {
@@ -46,11 +49,11 @@
46
49
  "node": "^22.22.3 || ^24.15.0 || >=26.0"
47
50
  },
48
51
  "devDependencies": {
49
- "mdn-data": "2.33.0",
50
- "postcss": "^8.5.26"
52
+ "mdn-data": "2.35.0",
53
+ "postcss": "^8.5.28"
51
54
  },
52
55
  "peerDependencies": {
53
- "postcss": "^8.5.26"
56
+ "postcss": "^8.5.28"
54
57
  },
55
58
  "type": "module",
56
59
  "scripts": {