@cssxjs/bundler 0.2.16 → 0.2.18

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,3 +1,15 @@
1
+ # v0.2.17 (Mon Nov 10 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix(babel-plugin-rn-stylename-to-style): change the default extensions to compile to .cssx.css and .cssx.styl (cray0000@gmail.com)
6
+
7
+ #### Authors: 1
8
+
9
+ - Pavel Zhukov (cray0000@gmail.com)
10
+
11
+ ---
12
+
1
13
  # v0.2.7 (Wed Nov 05 2025)
2
14
 
3
15
  #### 🐛 Bug Fix
package/README.md CHANGED
@@ -32,7 +32,7 @@ $this = merge({
32
32
  2. Now import variables `colors`, `config` and `foobar` in the `ShoppingCart/index.js` file:
33
33
 
34
34
  ```jsx
35
- import STYLES from './index.styl'
35
+ import STYLES from './index.cssx.styl'
36
36
 
37
37
  const {
38
38
  config: { bgColor },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cssxjs/bundler",
3
- "version": "0.2.16",
3
+ "version": "0.2.18",
4
4
  "description": "Compile CSSX styles in React Native and Web bundlers",
5
5
  "exports": {
6
6
  "./metro-config": "./metro-config.js",
@@ -21,8 +21,8 @@
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
23
  "@babel/core": "^7.0.0",
24
- "@cssxjs/loaders": "^0.2.16",
25
- "babel-preset-cssxjs": "^0.2.16"
24
+ "@cssxjs/loaders": "^0.2.18",
25
+ "babel-preset-cssxjs": "^0.2.18"
26
26
  },
27
- "gitHead": "4b62363af9606001df70548a69afc655545edab7"
27
+ "gitHead": "d3031e5be896899e7dc72a69a1e4fd0731ba44c9"
28
28
  }