@stylexswc/jest 0.15.1 → 0.15.2
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/README.md +5 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Jest transformer with NAPI-RS StyleX compiler integration
|
|
2
|
+
|
|
3
|
+
> Part of the [StyleX SWC Plugin](https://github.com/Dwlad90/stylex-swc-plugin#readme) workspace
|
|
2
4
|
|
|
3
5
|
Jest transformer that enables StyleX SWC integration for JavaScript and
|
|
4
6
|
TypeScript testing with Jest.
|
|
@@ -198,9 +200,8 @@ module.exports = customJestConfig;
|
|
|
198
200
|
```
|
|
199
201
|
|
|
200
202
|
Real example can be found in the
|
|
201
|
-
[@stylexswc/next-example](
|
|
203
|
+
[@stylexswc/next-example](https://github.com/Dwlad90/stylex-swc-plugin/tree/develop/apps/nextjs-example/jest.config.js)
|
|
202
204
|
|
|
203
205
|
## License
|
|
204
206
|
|
|
205
|
-
|
|
206
|
-
file for details.
|
|
207
|
+
MIT — see [LICENSE](https://github.com/Dwlad90/stylex-swc-plugin/blob/develop/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stylexswc/jest",
|
|
3
3
|
"description": "Jest transformer for Stylex SWC",
|
|
4
|
-
"version": "0.15.
|
|
4
|
+
"version": "0.15.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@stylexswc/rs-compiler": "0.15.
|
|
21
|
+
"@stylexswc/rs-compiler": "0.15.2"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@babel/types": "^7.29.0",
|
|
25
25
|
"@jest/transform": "^30.2.0",
|
|
26
26
|
"@jest/types": "^30.2.0",
|
|
27
|
-
"@stylexswc/eslint-config": "0.15.
|
|
28
|
-
"@stylexswc/typescript-config": "0.15.
|
|
27
|
+
"@stylexswc/eslint-config": "0.15.2",
|
|
28
|
+
"@stylexswc/typescript-config": "0.15.2",
|
|
29
29
|
"@types/node": "^25.3.3"
|
|
30
30
|
},
|
|
31
31
|
"keywords": [
|