@cssxjs/babel-plugin-rn-stylename-to-style 0.2.19 → 0.2.28

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 +36 -0
  2. package/index.js +2 -0
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,39 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.2.28](https://github.com/startupjs/startupjs/compare/v0.2.27...v0.2.28) (2025-12-16)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **babel-plugin-rn-stylename-to-style:** re-crawl the whole Program to update bindings correctly ([3e72af1](https://github.com/startupjs/startupjs/commit/3e72af1846ec33da6e158182e5fbb19614d81da8))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.2.27](https://github.com/startupjs/startupjs/compare/v0.2.26...v0.2.27) (2025-12-16)
18
+
19
+ **Note:** Version bump only for package @cssxjs/babel-plugin-rn-stylename-to-style
20
+
21
+
22
+
23
+
24
+
25
+ # v0.2.20 (Tue Dec 16 2025)
26
+
27
+ #### 🐛 Bug Fix
28
+
29
+ - fix(babel-plugin-rn-stylename-to-style): update scope bindings after injecting part styles into component props ([@cray0000](https://github.com/cray0000))
30
+
31
+ #### Authors: 1
32
+
33
+ - Pavel Zhukov ([@cray0000](https://github.com/cray0000))
34
+
35
+ ---
36
+
1
37
  # v0.2.17 (Mon Nov 10 2025)
2
38
 
3
39
  #### 🐛 Bug Fix
package/index.js CHANGED
@@ -429,6 +429,8 @@ module.exports = function (babel) {
429
429
  $this.replaceWith(processCall)
430
430
  }
431
431
  }, state)
432
+ // re-crawl to update scope bindings
433
+ $this.scope.crawl()
432
434
  }
433
435
  }
434
436
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cssxjs/babel-plugin-rn-stylename-to-style",
3
- "version": "0.2.19",
3
+ "version": "0.2.28",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -27,13 +27,13 @@
27
27
  "@babel/parser": "^7.0.0",
28
28
  "@babel/template": "^7.4.0",
29
29
  "@babel/types": "^7.0.0",
30
- "@cssxjs/runtime": "^0.2.19"
30
+ "@cssxjs/runtime": "^0.2.27"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@babel/plugin-syntax-jsx": "^7.0.0",
34
- "@cssxjs/babel-plugin-react-pug": "^0.2.19",
34
+ "@cssxjs/babel-plugin-react-pug": "^0.2.27",
35
35
  "babel-plugin-tester": "^9.1.0",
36
36
  "jest": "^30.0.4"
37
37
  },
38
- "gitHead": "0653d6649b3754768a82756265c0061989171c83"
38
+ "gitHead": "2bb10995c041f489ac4d58bd6c9ecea4d568af98"
39
39
  }