css-blank-pseudo 8.0.0 → 8.0.1

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/CHANGELOG.md CHANGED
@@ -1,10 +1,9 @@
1
1
  # Changes to CSS Blank Pseudo
2
2
 
3
- ### 8.0.0
3
+ ### 8.0.1
4
4
 
5
5
  _January 14, 2026_
6
6
 
7
- - Updated: Support for Node `20.19.0` or later (major).
8
- - Removed: `commonjs` API. In supported Node versions `require(esm)` will work without needing to make code changes.
7
+ - Remove accidental direct dependency on `typescript`
9
8
 
10
9
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-blank-pseudo/CHANGELOG.md)
package/README.md CHANGED
@@ -136,7 +136,7 @@ or
136
136
 
137
137
  ```html
138
138
  <!-- When using a CDN url you will have to manually update the version number -->
139
- <script src="https://unpkg.com/css-blank-pseudo@8.0.0/dist/browser-global.js"></script>
139
+ <script src="https://unpkg.com/css-blank-pseudo@8.0.1/dist/browser-global.js"></script>
140
140
  <script>cssBlankPseudoInit()</script>
141
141
  ```
142
142
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "css-blank-pseudo",
3
3
  "description": "Style form elements when they are empty",
4
- "version": "8.0.0",
4
+ "version": "8.0.1",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -53,8 +53,7 @@
53
53
  "dist"
54
54
  ],
55
55
  "dependencies": {
56
- "postcss-selector-parser": "^7.1.1",
57
- "typescript": "^5.9.3"
56
+ "postcss-selector-parser": "^7.1.1"
58
57
  },
59
58
  "peerDependencies": {
60
59
  "postcss": "^8.4"