@foray1010/jest-preset 5.1.0 → 6.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 +15 -0
- package/jest-preset.mjs +3 -1
- package/package.json +4 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
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
|
+
## [6.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/jest-preset@5.1.0...@foray1010/jest-preset@6.0.0) (2025-10-31)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- **jest-preset:** support jest 30 only
|
|
11
|
+
- require nodejs `^20.19.0 || ^22.12.0 || >=24.11.0`
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- **jest-preset:** support jest 30 only ([02e84e6](https://github.com/foray1010/common-presets/commit/02e84e6574f5355210cb80e10e368f9176ac068a))
|
|
16
|
+
|
|
17
|
+
### Miscellaneous Chores
|
|
18
|
+
|
|
19
|
+
- require nodejs `^20.19.0 || ^22.12.0 || >=24.11.0` ([aae1835](https://github.com/foray1010/common-presets/commit/aae1835f9517621ddc0d71f31bda39e9163213a1))
|
|
20
|
+
|
|
6
21
|
## [5.1.0](https://github.com/foray1010/common-presets/compare/@foray1010/jest-preset@5.0.0...@foray1010/jest-preset@5.1.0) (2023-11-17)
|
|
7
22
|
|
|
8
23
|
### Features
|
package/jest-preset.mjs
CHANGED
|
@@ -14,7 +14,9 @@ const preset = {
|
|
|
14
14
|
coverageReporters: ['lcov', 'text-summary'],
|
|
15
15
|
errorOnDeprecated: true,
|
|
16
16
|
notify: true,
|
|
17
|
-
|
|
17
|
+
testEnvironmentOptions: {
|
|
18
|
+
globalsCleanup: 'on',
|
|
19
|
+
},
|
|
18
20
|
testMatch: ['**/*.{spec,test}.{cjs,cts,js,mjs,mts,ts,tsx}'],
|
|
19
21
|
}
|
|
20
22
|
export default preset
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "@foray1010/jest-preset",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "6.0.0",
|
|
5
5
|
"homepage": "https://github.com/foray1010/common-presets/tree/master/packages/jest-preset#readme",
|
|
6
6
|
"bugs": "https://github.com/foray1010/common-presets/issues",
|
|
7
7
|
"repository": {
|
|
@@ -18,18 +18,15 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"type:check": "tsc"
|
|
20
20
|
},
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"ts-jest-resolver": "^2.0.1"
|
|
23
|
-
},
|
|
24
21
|
"peerDependencies": {
|
|
25
|
-
"jest": "^
|
|
22
|
+
"jest": "^30.2.0",
|
|
26
23
|
"node-notifier": "^10.0.1"
|
|
27
24
|
},
|
|
28
25
|
"engines": {
|
|
29
|
-
"node": "^
|
|
26
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.11.0"
|
|
30
27
|
},
|
|
31
28
|
"publishConfig": {
|
|
32
29
|
"access": "public"
|
|
33
30
|
},
|
|
34
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "f4d31b1d0075b0c77a6ae59e7442a977df4b4d15"
|
|
35
32
|
}
|