@nx/cypress 21.0.0-beta.4 → 21.0.0-beta.5
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 +4 -4
- package/src/plugins/plugin.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/cypress",
|
|
3
|
-
"version": "21.0.0-beta.
|
|
3
|
+
"version": "21.0.0-beta.5",
|
|
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": {
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"migrations": "./migrations.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@nx/devkit": "21.0.0-beta.
|
|
40
|
-
"@nx/eslint": "21.0.0-beta.
|
|
41
|
-
"@nx/js": "21.0.0-beta.
|
|
39
|
+
"@nx/devkit": "21.0.0-beta.5",
|
|
40
|
+
"@nx/eslint": "21.0.0-beta.5",
|
|
41
|
+
"@nx/js": "21.0.0-beta.5",
|
|
42
42
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
43
43
|
"detect-port": "^1.5.1",
|
|
44
44
|
"semver": "^7.6.3",
|
package/src/plugins/plugin.js
CHANGED
|
@@ -284,7 +284,6 @@ async function buildCypressTargets(configFilePath, projectRoot, options, context
|
|
|
284
284
|
inputs,
|
|
285
285
|
outputs,
|
|
286
286
|
dependsOn,
|
|
287
|
-
parallelism: false,
|
|
288
287
|
metadata: {
|
|
289
288
|
technologies: ['cypress'],
|
|
290
289
|
description: 'Runs Cypress Tests in CI',
|
|
@@ -297,6 +296,9 @@ async function buildCypressTargets(configFilePath, projectRoot, options, context
|
|
|
297
296
|
},
|
|
298
297
|
},
|
|
299
298
|
};
|
|
299
|
+
if (!ciWebServerCommandTask) {
|
|
300
|
+
targets[options.ciTargetName].parallelism = false;
|
|
301
|
+
}
|
|
300
302
|
ciTargetGroup.push(options.ciTargetName);
|
|
301
303
|
}
|
|
302
304
|
}
|