@nx/jest 22.3.1 → 22.3.3
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/migrations.json +8 -0
- package/package.json +4 -4
package/migrations.json
CHANGED
|
@@ -34,6 +34,14 @@
|
|
|
34
34
|
"version": "22.2.0-beta.2",
|
|
35
35
|
"description": "Convert jest.config.ts files from ESM to CJS syntax (export default -> module.exports, import -> require) for projects using CommonJS resolution to ensure correct loading under Node.js type-stripping.",
|
|
36
36
|
"implementation": "./src/migrations/update-22-2-0/convert-jest-config-to-cjs"
|
|
37
|
+
},
|
|
38
|
+
"replace-removed-matcher-aliases-v22-3": {
|
|
39
|
+
"version": "22.3.2-beta.0",
|
|
40
|
+
"requires": {
|
|
41
|
+
"jest": ">=30.0.0"
|
|
42
|
+
},
|
|
43
|
+
"description": "Replace removed matcher aliases in Jest v30 with their corresponding matcher",
|
|
44
|
+
"implementation": "./src/migrations/update-21-3-0/replace-removed-matcher-aliases"
|
|
37
45
|
}
|
|
38
46
|
},
|
|
39
47
|
"packageJsonUpdates": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/jest",
|
|
3
|
-
"version": "22.3.
|
|
3
|
+
"version": "22.3.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Jest contains executors and generators allowing your workspace to use the powerful Jest testing capabilities.",
|
|
6
6
|
"repository": {
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@jest/reporters": "^30.0.2",
|
|
39
39
|
"@jest/test-result": "^30.0.2",
|
|
40
|
-
"@nx/devkit": "22.3.
|
|
41
|
-
"@nx/js": "22.3.
|
|
40
|
+
"@nx/devkit": "22.3.3",
|
|
41
|
+
"@nx/js": "22.3.3",
|
|
42
42
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
43
43
|
"identity-obj-proxy": "3.0.0",
|
|
44
44
|
"jest-config": "^30.0.2",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"yargs-parser": "21.1.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"nx": "22.3.
|
|
55
|
+
"nx": "22.3.3"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|