@nx/cypress 19.5.0-beta.1 → 19.5.0-beta.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/README.md +1 -1
- package/package.json +5 -5
- package/src/plugins/plugin.js +3 -0
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ npx nx@latest init
|
|
|
61
61
|
- [Nx.Dev: Documentation, Guides, Tutorials](https://nx.dev)
|
|
62
62
|
- [Intro to Nx](https://nx.dev/getting-started/intro)
|
|
63
63
|
- [Official Nx YouTube Channel](https://www.youtube.com/@NxDevtools)
|
|
64
|
-
- [Blog Posts About Nx](https://
|
|
64
|
+
- [Blog Posts About Nx](https://nx.dev/blog)
|
|
65
65
|
|
|
66
66
|
<p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-courses-and-videos.svg"
|
|
67
67
|
width="100%" alt="Nx - Smart Monorepos · Fast CI"></a></p>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/cypress",
|
|
3
|
-
"version": "19.5.0-beta.
|
|
3
|
+
"version": "19.5.0-beta.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": {
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"migrations": "./migrations.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@nx/devkit": "19.5.0-beta.
|
|
40
|
-
"@nx/eslint": "19.5.0-beta.
|
|
41
|
-
"@nx/js": "19.5.0-beta.
|
|
39
|
+
"@nx/devkit": "19.5.0-beta.3",
|
|
40
|
+
"@nx/eslint": "19.5.0-beta.3",
|
|
41
|
+
"@nx/js": "19.5.0-beta.3",
|
|
42
42
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
43
43
|
"detect-port": "^1.5.1",
|
|
44
44
|
"tslib": "^2.3.0",
|
|
45
|
-
"@nrwl/cypress": "19.5.0-beta.
|
|
45
|
+
"@nrwl/cypress": "19.5.0-beta.3"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"cypress": ">= 3 < 14"
|
package/src/plugins/plugin.js
CHANGED
|
@@ -125,6 +125,7 @@ async function buildCypressTargets(configFilePath, projectRoot, options, context
|
|
|
125
125
|
cache: true,
|
|
126
126
|
inputs: getInputs(namedInputs),
|
|
127
127
|
outputs: getOutputs(projectRoot, cypressConfig, 'e2e'),
|
|
128
|
+
parallelism: false,
|
|
128
129
|
metadata: {
|
|
129
130
|
technologies: ['cypress'],
|
|
130
131
|
description: 'Runs Cypress Tests',
|
|
@@ -177,6 +178,7 @@ async function buildCypressTargets(configFilePath, projectRoot, options, context
|
|
|
177
178
|
options: {
|
|
178
179
|
cwd: projectRoot,
|
|
179
180
|
},
|
|
181
|
+
parallelism: false,
|
|
180
182
|
metadata: {
|
|
181
183
|
technologies: ['cypress'],
|
|
182
184
|
description: `Runs Cypress Tests in ${relativeSpecFilePath} in CI`,
|
|
@@ -200,6 +202,7 @@ async function buildCypressTargets(configFilePath, projectRoot, options, context
|
|
|
200
202
|
inputs,
|
|
201
203
|
outputs,
|
|
202
204
|
dependsOn,
|
|
205
|
+
parallelism: false,
|
|
203
206
|
metadata: {
|
|
204
207
|
technologies: ['cypress'],
|
|
205
208
|
description: 'Runs Cypress Tests in CI',
|