@cssxjs/runtime 0.2.9 → 0.2.10

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/CHANGELOG.md +12 -0
  2. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v0.2.10 (Wed Nov 05 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix: export matcher, variables, dimensions from @cssxjs/runtime and from the main cssxjs ([@cray0000](https://github.com/cray0000))
6
+
7
+ #### Authors: 1
8
+
9
+ - Pavel Zhukov ([@cray0000](https://github.com/cray0000))
10
+
11
+ ---
12
+
1
13
  # v0.2.9 (Wed Nov 05 2025)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cssxjs/runtime",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -18,7 +18,9 @@
18
18
  "./entrypoints/web-teamplay": "./entrypoints/web-teamplay.js",
19
19
  "./entrypoints/react-native-teamplay": "./entrypoints/react-native-teamplay.js",
20
20
  "./constants": "./constants.cjs",
21
- "./dimensions": "./dimensions.js"
21
+ "./dimensions": "./dimensions.js",
22
+ "./variables": "./variables.js",
23
+ "./matcher": "./matcher.js"
22
24
  },
23
25
  "type": "module",
24
26
  "scripts": {
@@ -52,5 +54,5 @@
52
54
  "optional": true
53
55
  }
54
56
  },
55
- "gitHead": "af8db22bc0f2aaff393010ad7c50b1233bc23214"
57
+ "gitHead": "df668d1f0c63ad78e0668d63613f304e5cca3584"
56
58
  }