@ornikar/jest-config-react-native 8.5.1 → 9.0.1
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
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [9.0.1](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@9.0.0...@ornikar/jest-config-react-native@9.0.1) (2023-10-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **jest-config-react-native:** add library not compatible with sucrase for expo 49 [no issue] ([#994](https://github.com/ornikar/shared-configs/issues/994)) ([c12a9f6](https://github.com/ornikar/shared-configs/commit/c12a9f6f8c05a18610b288d9777965ac9644de87))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [9.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@8.5.1...@ornikar/jest-config-react-native@9.0.0) (2023-09-27)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### ⚠ BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* **rollup-config:** requires node 18 and requires to update exports as dist path changed
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* **rollup-config:** update to node 18 ECF-281 ([#979](https://github.com/ornikar/shared-configs/issues/979)) ([26eaaf9](https://github.com/ornikar/shared-configs/commit/26eaaf9db689de9ec474919881ce87784427cc5c))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [8.5.1](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@8.5.0...@ornikar/jest-config-react-native@8.5.1) (2023-09-14)
|
|
7
29
|
|
|
8
30
|
|
package/customTransforms.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
exports.customTransforms = {
|
|
8
8
|
// compilation of problematic node_modules has a simpler babel config
|
|
9
|
-
'node_modules/(react-native-(calendars|reanimated)|@react-native-community/netinfo)/.*\\.(js|jsx|ts|tsx)$':
|
|
9
|
+
'node_modules/(react-native-(calendars|reanimated)|@react-native-community/netinfo|@react-native/virtualized-lists)/.*\\.(js|jsx|ts|tsx)$':
|
|
10
10
|
require.resolve('./transformers/babel-transformer-node-modules.js'),
|
|
11
11
|
|
|
12
12
|
// dont transform node_modules when already compiled
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornikar/jest-config-react-native",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"description": "✅⚛️📱 jest config for react-native",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "@ornikar/jest-config-react-native",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"main": "jest-preset.js",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"engines": {
|
|
13
|
-
"node": ">=
|
|
13
|
+
"node": ">=18.18.0"
|
|
14
14
|
},
|
|
15
15
|
"publishConfig": {
|
|
16
16
|
"access": "public"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@ornikar/jest-config-react": "
|
|
46
|
+
"@ornikar/jest-config-react": "12.0.0",
|
|
47
47
|
"@sucrase/jest-plugin": "^3.0.0",
|
|
48
48
|
"sucrase": "^3.34.0"
|
|
49
49
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"scripts": {
|
|
57
57
|
"lint:eslint": "yarn ../.. eslint --report-unused-disable-directives --quiet @ornikar/jest-config-react-native"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "8397a3843d33fd4813e3de42cd72eb2fd213b15a"
|
|
60
60
|
}
|