@ornikar/jest-config-react-native 7.3.2 → 7.4.0-alpha.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/CHANGELOG.md +19 -0
- package/package.json +5 -4
- package/transformers/identity-transformer.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
# [7.4.0-alpha.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@7.1.1...@ornikar/jest-config-react-native@7.4.0-alpha.0) (2023-02-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* check packagejson deps ([fdc5814](https://github.com/ornikar/shared-configs/commit/fdc5814c4114333f7236ed7b8de149c8beca039a))
|
|
12
|
+
* **jest-config-react-native:** fix addons mock path ([ee1f5e8](https://github.com/ornikar/shared-configs/commit/ee1f5e8f0c634014f565fb12746b9cbed97d124c))
|
|
13
|
+
* update config for Jest 27 ONK-4620 ([#821](https://github.com/ornikar/shared-configs/issues/821)) ([4ef02d5](https://github.com/ornikar/shared-configs/commit/4ef02d52ca7127beba853b92695786bf10d4868c))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **deps:** update dependency jest-expo to v47 ([#760](https://github.com/ornikar/shared-configs/issues/760)) ([245d774](https://github.com/ornikar/shared-configs/commit/245d774c6b9d29bfa3cfe600a454f00218bb6118))
|
|
19
|
+
* **jest-config-react:** add storybook mocks [no issue] ([#827](https://github.com/ornikar/shared-configs/issues/827)) ([3ebed2f](https://github.com/ornikar/shared-configs/commit/3ebed2fac66dc585d36712a668c040db294fb0ff))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [7.3.2](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@7.3.1...@ornikar/jest-config-react-native@7.3.2) (2023-01-26)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @ornikar/jest-config-react-native
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornikar/jest-config-react-native",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.4.0-alpha.0",
|
|
4
4
|
"description": "✅⚛️📱 jest config for react-native",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "@ornikar/jest-config-react-native",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"@testing-library/react": "^11.2.5 || ^12.0.0",
|
|
20
20
|
"@testing-library/react-hooks": "^7.0.0",
|
|
21
21
|
"@testing-library/react-native": "^7.2.0 || ^8.0.0 || ^9.0.0",
|
|
22
|
-
"jest": "^
|
|
22
|
+
"jest": "^29.4.1",
|
|
23
|
+
"jest-environment-jsdom": "29.4.1",
|
|
23
24
|
"jest-expo": "^41.0.0 || ^42.0.0 || ^43.0.0 || ^44.0.0 || ^45.0.0 || ^46.0.0 || ^47.0.0",
|
|
24
25
|
"react": "^17.0.0",
|
|
25
26
|
"react-dom": "^17.0.0",
|
|
@@ -34,7 +35,7 @@
|
|
|
34
35
|
}
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|
|
37
|
-
"@ornikar/jest-config-react": "^10.
|
|
38
|
+
"@ornikar/jest-config-react": "^10.4.0-alpha.0",
|
|
38
39
|
"@sucrase/jest-plugin": "^2.2.1"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
@@ -47,5 +48,5 @@
|
|
|
47
48
|
"scripts": {
|
|
48
49
|
"lint:eslint": "yarn ../.. eslint --report-unused-disable-directives --quiet @ornikar/jest-config-react-native"
|
|
49
50
|
},
|
|
50
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "c91391011607f596c39e3b27113a3052402d6d50"
|
|
51
52
|
}
|