css-blank-pseudo 5.0.0 → 5.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,5 +1,9 @@
1
1
  # Changes to CSS Blank Pseudo
2
2
 
3
+ ### 5.0.1 (January 28, 2023)
4
+
5
+ - Improve `types` declaration in `package.json`
6
+
3
7
  ### 5.0.0 (January 24, 2023)
4
8
 
5
9
  - Updated: Support for Node v14+ (major).
package/README.md CHANGED
@@ -141,7 +141,7 @@ or
141
141
 
142
142
  ```html
143
143
  <!-- When using a CDN url you will have to manually update the version number -->
144
- <script src="https://unpkg.com/css-blank-pseudo@5.0.0/dist/browser-global.js"></script>
144
+ <script src="https://unpkg.com/css-blank-pseudo@5.0.1/dist/browser-global.js"></script>
145
145
  <script>cssBlankPseudoInit()</script>
146
146
  ```
147
147
 
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": "5.0.0",
4
+ "version": "5.0.1",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -30,6 +30,7 @@
30
30
  "types": "dist/index.d.ts",
31
31
  "exports": {
32
32
  ".": {
33
+ "types": "./dist/index.d.ts",
33
34
  "import": "./dist/index.mjs",
34
35
  "require": "./dist/index.cjs",
35
36
  "default": "./dist/index.mjs"