@nx/jest 17.1.2 → 17.1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/jest",
|
|
3
|
-
"version": "17.1.
|
|
3
|
+
"version": "17.1.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": {
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"jest-util": "^29.4.1",
|
|
45
45
|
"resolve.exports": "1.1.0",
|
|
46
46
|
"tslib": "^2.3.0",
|
|
47
|
-
"@nx/devkit": "17.1.
|
|
48
|
-
"@nx/js": "17.1.
|
|
49
|
-
"@nrwl/jest": "17.1.
|
|
47
|
+
"@nx/devkit": "17.1.3",
|
|
48
|
+
"@nx/js": "17.1.3",
|
|
49
|
+
"@nrwl/jest": "17.1.3"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
@@ -108,7 +108,7 @@ function isTargetDefaultUsed(targetDefault, targetDefaults, projects, projectMap
|
|
|
108
108
|
for (const targetName in p.data?.targets ?? {}) {
|
|
109
109
|
if ((0, project_configuration_utils_1.readTargetDefaultsForTarget)(targetName, targetDefaults,
|
|
110
110
|
// It might seem like we should use the graph here too but we don't want to pass an executor which was processed in the graph
|
|
111
|
-
projectMap.get(p.name)
|
|
111
|
+
projectMap.get(p.name)?.targets?.[targetName]?.executor) === targetDefault) {
|
|
112
112
|
return true;
|
|
113
113
|
}
|
|
114
114
|
}
|