@csstools/css-syntax-patches-for-csstree 1.0.0 → 1.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,7 +1,9 @@
1
1
  # Changes to CSS Syntax Patches For CSSTree
2
2
 
3
- ### 1.0.0
3
+ ### 1.0.1
4
4
 
5
5
  _November 1, 2024_
6
6
 
7
- - initial version
7
+ - Add TypeScript types
8
+
9
+ [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/packages/css-syntax-patches-for-csstree/CHANGELOG.md)
package/README.md CHANGED
@@ -8,7 +8,7 @@ Path [csstree](https://github.com/csstree/csstree) syntax definitions with the l
8
8
  ## Usage
9
9
 
10
10
  ```bash
11
- npm install @csstools/css-syntax-patches-for-csstree --save-dev
11
+ npm install @csstools/css-syntax-patches-for-csstree
12
12
  ```
13
13
 
14
14
  ```js
@@ -0,0 +1,5 @@
1
+ export const next: {
2
+ atrules: Record<string, { descriptors: Record<string, string> }>,
3
+ properties: Record<string, string>,
4
+ types: Record<string, string>,
5
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/css-syntax-patches-for-csstree",
3
3
  "description": "CSS syntax patches for CSS tree",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -28,6 +28,7 @@
28
28
  "node": ">=18"
29
29
  },
30
30
  "main": "dist/index.json",
31
+ "types": "dist/index.d.ts",
31
32
  "files": [
32
33
  "CHANGELOG.md",
33
34
  "LICENSE.md",