@ornikar/jest-config-react-native 9.2.0 → 10.0.1-canary.181f986e71284c143ceb9a2f406b036752c66fe2.0
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/.vscode/settings.json +3 -0
- package/CHANGELOG.md +27 -0
- package/customTransforms.js +3 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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
|
+
## [10.0.1-canary.181f986e71284c143ceb9a2f406b036752c66fe2.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@10.0.0...@ornikar/jest-config-react-native@10.0.1-canary.181f986e71284c143ceb9a2f406b036752c66fe2.0) (2023-12-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* run yornikar ([be0b8aa](https://github.com/ornikar/shared-configs/commit/be0b8aa27873482c0a405db7d3122ed5c8b5a187))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [10.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@9.2.0...@ornikar/jest-config-react-native@10.0.0) (2023-11-29)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### ⚠ BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* expo 49 OSE-1664 (#1044)
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* expo 49 OSE-1664 ([#1044](https://github.com/ornikar/shared-configs/issues/1044)) ([a5b8ae8](https://github.com/ornikar/shared-configs/commit/a5b8ae8b684443248359f7a2155cf9ab8c654d8a))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* ornikar package custom transform [no issue] ([#1046](https://github.com/ornikar/shared-configs/issues/1046)) ([b939716](https://github.com/ornikar/shared-configs/commit/b939716ecf236dca10a18c2046b9a8708b0398f3))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [9.2.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@9.1.1...@ornikar/jest-config-react-native@9.2.0) (2023-11-27)
|
|
7
34
|
|
|
8
35
|
|
package/customTransforms.js
CHANGED
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
exports.customTransforms = {
|
|
8
8
|
// compilation of ornikar packages
|
|
9
|
-
'node_modules/@ornikar/.*\\.(js|cjs|mjs)$': require.resolve(
|
|
9
|
+
'node_modules/@ornikar/(.[a-z-]*)/dist/.*\\.(js|cjs|mjs)$': require.resolve(
|
|
10
|
+
'./transformers/babel-transformer-ornikar-packages.js',
|
|
11
|
+
),
|
|
10
12
|
|
|
11
13
|
// compilation of problematic node_modules has a simpler babel config
|
|
12
14
|
'node_modules/(react-native-(calendars|reanimated)|@react-native-community/netinfo|@react-native/virtualized-lists)/.*\\.(js|jsx|ts|tsx)$':
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornikar/jest-config-react-native",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.1-canary.181f986e71284c143ceb9a2f406b036752c66fe2.0",
|
|
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": ">=20.10.0"
|
|
14
14
|
},
|
|
15
15
|
"publishConfig": {
|
|
16
16
|
"access": "public"
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"@testing-library/react-native": "^11.5.4 || ^12.1.2",
|
|
21
21
|
"jest": "^29.5.0",
|
|
22
22
|
"jest-environment-jsdom": "^29.5.0",
|
|
23
|
-
"jest-expo": "^
|
|
23
|
+
"jest-expo": "^49.0.0",
|
|
24
24
|
"react": "^18.2.0",
|
|
25
25
|
"react-dom": "^18.2.0",
|
|
26
|
-
"react-native": ">=0.
|
|
26
|
+
"react-native": ">=0.72"
|
|
27
27
|
},
|
|
28
28
|
"peerDependenciesMeta": {
|
|
29
29
|
"@testing-library/react": {
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@ornikar/jest-config-react": "12.1.
|
|
46
|
+
"@ornikar/jest-config-react": "12.1.2-canary.181f986e71284c143ceb9a2f406b036752c66fe2.0",
|
|
47
47
|
"@sucrase/jest-plugin": "^3.0.0",
|
|
48
48
|
"sucrase": "^3.34.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@testing-library/react-native": "12.4.
|
|
51
|
+
"@testing-library/react-native": "12.4.1",
|
|
52
52
|
"jest-expo": "49.0.0",
|
|
53
53
|
"react": "18.2.0",
|
|
54
54
|
"react-test-renderer": "18.2.0"
|