postcss-colormin 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
@@ -23,7 +23,7 @@ console.log(postcss(colormin()).process(css).css);
23
23
  // => 'h1 {color:red}'
24
24
  ```
25
25
 
26
- For more examples see the [tests](src/__tests__/index.js).
26
+ For more examples see the [tests](test).
27
27
 
28
28
 
29
29
  ## Usage
@@ -34,7 +34,7 @@ examples for your environment.
34
34
 
35
35
  ## Contributors
36
36
 
37
- See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
37
+ See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/main/CONTRIBUTORS.md).
38
38
 
39
39
 
40
40
  ## License
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "postcss-colormin",
3
- "version": "9.0.0",
3
+ "version": "9.0.2",
4
4
  "description": "Minify colors in your CSS files 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",
@@ -40,8 +43,8 @@
40
43
  "url": "git+https://github.com/cssnano/cssnano.git"
41
44
  },
42
45
  "dependencies": {
43
- "@colordx/core": "^5.6.0",
44
- "browserslist": "^4.28.8",
46
+ "@colordx/core": "^6.3.0",
47
+ "browserslist": "^4.28.9",
45
48
  "caniuse-api": "^4.0.0",
46
49
  "postcss-value-parser": "^4.2.0"
47
50
  },
@@ -52,10 +55,10 @@
52
55
  "node": "^22.22.3 || ^24.15.0 || >=26.0"
53
56
  },
54
57
  "devDependencies": {
55
- "postcss": "^8.5.26"
58
+ "postcss": "^8.5.28"
56
59
  },
57
60
  "peerDependencies": {
58
- "postcss": "^8.5.26"
61
+ "postcss": "^8.5.28"
59
62
  },
60
63
  "type": "module",
61
64
  "scripts": {