@ornikar/jest-config-react 11.3.2 → 12.0.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,6 +3,19 @@
|
|
|
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
|
+
## [12.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@11.3.2...@ornikar/jest-config-react@12.0.0) (2023-09-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ⚠ BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* **rollup-config:** requires node 18 and requires to update exports as dist path changed
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **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))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
## [11.3.2](https://github.com/ornikar/shared-configs/compare/@ornikar/jest-config-react@11.3.1...@ornikar/jest-config-react@11.3.2) (2023-09-14)
|
|
7
20
|
|
|
8
21
|
|
package/jest-preset.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const fs = require('fs');
|
|
4
|
-
const path = require('path');
|
|
3
|
+
const fs = require('node:fs');
|
|
4
|
+
const path = require('node:path');
|
|
5
5
|
const baseJestPreset = require('@ornikar/jest-config/jest-preset');
|
|
6
6
|
|
|
7
7
|
const useCraco = fs.existsSync(path.resolve('craco.config.js'));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ornikar/jest-config-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"description": "✅⚛️ jest config for react",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "@ornikar/jest-config-react",
|
|
@@ -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"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"react-dom": "^18.2.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@ornikar/jest-config": "
|
|
26
|
+
"@ornikar/jest-config": "10.0.0",
|
|
27
27
|
"identity-obj-proxy": "^3.0.0",
|
|
28
28
|
"jest-fail-on-console": "^3.1.1"
|
|
29
29
|
},
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"scripts": {
|
|
37
37
|
"lint:eslint": "yarn ../.. eslint --report-unused-disable-directives --quiet @ornikar/jest-config-react"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "73a88449f791b3153ac71460f397eecb47a3ac18"
|
|
40
40
|
}
|