@ornikar/jest-config-react-native 11.1.1-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.0 → 12.0.1-canary.172d6c3f84093c5206e42b8ed67f99f1ee384ac9.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 CHANGED
@@ -3,13 +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
- ## [11.1.1-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@11.1.0...@ornikar/jest-config-react-native@11.1.1-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.0) (2024-05-13)
6
+ ## [12.0.1-canary.172d6c3f84093c5206e42b8ed67f99f1ee384ac9.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@12.0.0...@ornikar/jest-config-react-native@12.0.1-canary.172d6c3f84093c5206e42b8ed67f99f1ee384ac9.0) (2024-05-28)
7
7
 
8
8
 
9
9
  ### Features
10
10
 
11
- * **jest-config-react-native:** bump jest-expo ([7fb7cc4](https://github.com/ornikar/shared-configs/commit/7fb7cc4846aea665801aaa7cae2b7d3c830c84eb))
12
- * remove custom transform as it was failing expo-linear-gradient transformation ([732de1a](https://github.com/ornikar/shared-configs/commit/732de1a0171f42a1d964e7c5ed1dc637f9afa0eb))
11
+ * trying new jest config ([172d6c3](https://github.com/ornikar/shared-configs/commit/172d6c3f84093c5206e42b8ed67f99f1ee384ac9))
12
+
13
+
14
+
15
+ ## [12.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react-native@11.1.0...@ornikar/jest-config-react-native@12.0.0) (2024-05-27)
16
+
17
+
18
+ ### ⚠ BREAKING CHANGES
19
+
20
+ * **jest-config-react-native:** bump jest-expo [no issue] (#1068)
21
+
22
+ ### Features
23
+
24
+ * **jest-config-react-native:** bump jest-expo [no issue] ([#1068](https://github.com/ornikar/shared-configs/issues/1068)) ([09341bc](https://github.com/ornikar/shared-configs/commit/09341bc1e7e839d7ec0b54bf546ad242f8ed91d2))
13
25
 
14
26
 
15
27
 
@@ -24,15 +24,10 @@ exports.customTransforms = {
24
24
  './transformers/babel-transformer-node-modules.js',
25
25
  ),
26
26
 
27
- // https://github.com/expo/expo/blob/d5d454eb585bdd8fb1a07e2910ba99dca8fd8786/packages/@expo/metro-config/src/transformer/createMultiRuleTransformer.ts#L207
28
- 'node_modules/(expo-processing|@expo/vector-icons)/.*\\.(js|jsx|ts|tsx)$': [
29
- '@sucrase/jest-plugin',
30
- { transforms: ['jsx', 'imports'] },
31
- ],
32
- 'node_modules/(expo-assets-utils)/.*\\.(js|jsx|ts|tsx)$': [
33
- '@sucrase/jest-plugin',
34
- { transforms: ['flow', 'imports'] },
35
- ],
27
+ // compilation of expo packages
28
+ 'node_modules/(@?(use-)?expo.*)/.*\\.(js|jsx|ts|tsx)$': require.resolve(
29
+ './transformers/babel-transformer-node-modules.js',
30
+ ),
36
31
 
37
32
  // compilation of rest node_modules with sucrase
38
33
  'node_modules.*\\.(js|jsx|ts|tsx)$': '@sucrase/jest-plugin',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/jest-config-react-native",
3
- "version": "11.1.1-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.0",
3
+ "version": "12.0.1-canary.172d6c3f84093c5206e42b8ed67f99f1ee384ac9.0",
4
4
  "description": "✅⚛️📱 jest config for react-native",
5
5
  "repository": {
6
6
  "directory": "@ornikar/jest-config-react-native",
@@ -43,7 +43,7 @@
43
43
  }
44
44
  },
45
45
  "dependencies": {
46
- "@ornikar/jest-config-react": "13.0.3-canary.a4af452d883a4606c51343e546a0e14fc3d1cda6.0",
46
+ "@ornikar/jest-config-react": "14.0.0",
47
47
  "@sucrase/jest-plugin": "^3.0.0",
48
48
  "sucrase": "^3.34.0"
49
49
  },