postcss-discard-unused 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 +8 -5
package/README.md CHANGED
@@ -65,7 +65,7 @@ h2 {
65
65
 
66
66
  However, you can mitigate this by including [postcss-minify-font-values][mfv]
67
67
  *before* this plugin, which will take care of normalising quotes, and
68
- deduplicating. For more examples, see the [tests](src/__tests__/index.js).
68
+ deduplicating. For more examples, see the [tests](test).
69
69
 
70
70
 
71
71
  ## Usage
@@ -116,7 +116,7 @@ examples for your environment.
116
116
 
117
117
  ## Contributors
118
118
 
119
- See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
119
+ See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/main/CONTRIBUTORS.md).
120
120
 
121
121
  ## License
122
122
 
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "postcss-discard-unused",
3
- "version": "9.0.0",
3
+ "version": "9.0.2",
4
4
  "description": "Discard unused counter styles, keyframes and fonts.",
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",
@@ -33,7 +36,7 @@
33
36
  "url": "git+https://github.com/cssnano/cssnano.git"
34
37
  },
35
38
  "dependencies": {
36
- "postcss-selector-parser": "^7.1.5"
39
+ "postcss-selector-parser": "^7.1.6"
37
40
  },
38
41
  "bugs": {
39
42
  "url": "https://github.com/cssnano/cssnano/issues"
@@ -42,10 +45,10 @@
42
45
  "node": "^22.22.3 || ^24.15.0 || >=26.0"
43
46
  },
44
47
  "devDependencies": {
45
- "postcss": "^8.5.26"
48
+ "postcss": "^8.5.28"
46
49
  },
47
50
  "peerDependencies": {
48
- "postcss": "^8.5.26"
51
+ "postcss": "^8.5.28"
49
52
  },
50
53
  "type": "module",
51
54
  "scripts": {