@nx/cypress 22.7.2 → 22.7.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 +5 -5
- package/src/plugins/plugin.js +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/cypress",
|
|
3
|
-
"version": "22.7.
|
|
3
|
+
"version": "22.7.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Cypress contains executors and generators allowing your workspace to use the powerful Cypress integration testing capabilities.",
|
|
6
6
|
"repository": {
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"migrations": "./migrations.json"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@nx/devkit": "22.7.
|
|
41
|
-
"@nx/eslint": "22.7.
|
|
42
|
-
"@nx/js": "22.7.
|
|
40
|
+
"@nx/devkit": "22.7.3",
|
|
41
|
+
"@nx/eslint": "22.7.3",
|
|
42
|
+
"@nx/js": "22.7.3",
|
|
43
43
|
"@phenomnomnominal/tsquery": "~6.2.0",
|
|
44
44
|
"detect-port": "^2.1.0",
|
|
45
45
|
"semver": "^7.6.3",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"tslib": "^2.3.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"nx": "22.7.
|
|
50
|
+
"nx": "22.7.3"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"cypress": ">= 13 < 16"
|
package/src/plugins/plugin.js
CHANGED
|
@@ -273,7 +273,6 @@ async function buildCypressTargets(configFilePath, projectRoot, options, context
|
|
|
273
273
|
};
|
|
274
274
|
dependsOn.push({
|
|
275
275
|
target: targetName,
|
|
276
|
-
projects: 'self',
|
|
277
276
|
params: 'forward',
|
|
278
277
|
options: 'forward',
|
|
279
278
|
});
|
|
@@ -389,7 +388,6 @@ async function buildCypressTargets(configFilePath, projectRoot, options, context
|
|
|
389
388
|
};
|
|
390
389
|
dependsOn.push({
|
|
391
390
|
target: targetName,
|
|
392
|
-
projects: 'self',
|
|
393
391
|
params: 'forward',
|
|
394
392
|
options: 'forward',
|
|
395
393
|
});
|