babel-preset-cssxjs 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/index.js +0 -1
  3. package/package.json +5 -5
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.11 (Fri Nov 07 2025)
2
14
 
3
15
  #### 🐛 Bug Fix
package/index.js CHANGED
@@ -45,7 +45,6 @@ module.exports = (api, {
45
45
  }],
46
46
  // CSS modules (separate .styl/.css file)
47
47
  transformCss && [require('@cssxjs/babel-plugin-rn-stylename-to-style'), {
48
- extensions: ['styl', 'css'],
49
48
  useImport: true,
50
49
  reactType,
51
50
  cache
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babel-preset-cssxjs",
3
- "version": "0.2.16",
3
+ "version": "0.2.18",
4
4
  "description": "Babel preset for compiling CSSX",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -16,9 +16,9 @@
16
16
  "dependencies": {
17
17
  "@babel/plugin-syntax-jsx": "^7.0.0",
18
18
  "@babel/plugin-syntax-typescript": "^7.23.3",
19
- "@cssxjs/babel-plugin-react-pug": "^0.2.16",
20
- "@cssxjs/babel-plugin-rn-stylename-inline": "^0.2.16",
21
- "@cssxjs/babel-plugin-rn-stylename-to-style": "^0.2.16"
19
+ "@cssxjs/babel-plugin-react-pug": "^0.2.18",
20
+ "@cssxjs/babel-plugin-rn-stylename-inline": "^0.2.18",
21
+ "@cssxjs/babel-plugin-rn-stylename-to-style": "^0.2.18"
22
22
  },
23
- "gitHead": "4b62363af9606001df70548a69afc655545edab7"
23
+ "gitHead": "d3031e5be896899e7dc72a69a1e4fd0731ba44c9"
24
24
  }