@cssxjs/babel-plugin-rn-stylename-inline 0.2.5 → 0.2.7

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.7 (Wed Nov 05 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix: move css and styl loaders into a separate package @cssxjs/loaders ([@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.1 (Tue Nov 04 2025)
2
14
 
3
15
  #### 🐛 Bug Fix
package/compilers/css.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // TODO: Move loaders into standalone libs
2
- const cssLoader = require('@cssxjs/bundler/lib/cssToReactNativeLoader')
3
- const callLoader = require('@cssxjs/bundler/lib/callLoader')
2
+ const cssLoader = require('@cssxjs/loaders/cssToReactNativeLoader')
3
+ const callLoader = require('@cssxjs/loaders/callLoader')
4
4
  const { stripExport } = require('./helpers')
5
5
 
6
6
  module.exports = function compileCss (src) {
package/compilers/styl.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // TODO: Move loaders into standalone libs
2
- const stylLoader = require('@cssxjs/bundler/lib/stylusToCssLoader')
3
- const callLoader = require('@cssxjs/bundler/lib/callLoader')
2
+ const stylLoader = require('@cssxjs/loaders/stylusToCssLoader')
3
+ const callLoader = require('@cssxjs/loaders/callLoader')
4
4
  const compileCss = require('./css')
5
5
 
6
6
  module.exports = function compileStyl (src, filename, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cssxjs/babel-plugin-rn-stylename-inline",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -26,13 +26,13 @@
26
26
  "@babel/parser": "^7.0.0",
27
27
  "@babel/template": "^7.4.0",
28
28
  "@babel/types": "^7.0.0",
29
- "@cssxjs/bundler": "^0.2.5",
30
- "@cssxjs/runtime": "^0.2.5"
29
+ "@cssxjs/loaders": "^0.2.7",
30
+ "@cssxjs/runtime": "^0.2.7"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@babel/plugin-syntax-jsx": "^7.0.0",
34
34
  "babel-plugin-tester": "^9.1.0",
35
35
  "jest": "^30.0.4"
36
36
  },
37
- "gitHead": "43c7c2f95105e88b07db9c12f3fffdb516a998ff"
37
+ "gitHead": "df9297432a485b18a13127558a62df7be263cac2"
38
38
  }