@nx/playwright 19.5.0-canary.20240712-0b0db78 → 19.5.0-canary.20240713-6f50d9f
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 +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/playwright",
|
|
3
|
-
"version": "19.5.0-canary.
|
|
3
|
+
"version": "19.5.0-canary.20240713-6f50d9f",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"homepage": "https://nx.dev",
|
|
6
6
|
"private": false,
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
38
|
-
"@nx/devkit": "19.5.0-canary.
|
|
39
|
-
"@nx/eslint": "19.5.0-canary.
|
|
40
|
-
"@nx/js": "19.5.0-canary.
|
|
38
|
+
"@nx/devkit": "19.5.0-canary.20240713-6f50d9f",
|
|
39
|
+
"@nx/eslint": "19.5.0-canary.20240713-6f50d9f",
|
|
40
|
+
"@nx/js": "19.5.0-canary.20240713-6f50d9f",
|
|
41
41
|
"tslib": "^2.3.0",
|
|
42
42
|
"minimatch": "9.0.3"
|
|
43
43
|
},
|
package/src/plugins/plugin.js
CHANGED
|
@@ -81,6 +81,7 @@ async function buildPlaywrightTargets(configFilePath, projectRoot, options, cont
|
|
|
81
81
|
options: {
|
|
82
82
|
cwd: '{projectRoot}',
|
|
83
83
|
},
|
|
84
|
+
parallelism: false,
|
|
84
85
|
metadata: {
|
|
85
86
|
technologies: ['playwright'],
|
|
86
87
|
description: 'Runs Playwright Tests',
|
|
@@ -163,6 +164,7 @@ async function buildPlaywrightTargets(configFilePath, projectRoot, options, cont
|
|
|
163
164
|
inputs: ciBaseTargetConfig.inputs,
|
|
164
165
|
outputs: ciBaseTargetConfig.outputs,
|
|
165
166
|
dependsOn,
|
|
167
|
+
parallelism: false,
|
|
166
168
|
metadata: {
|
|
167
169
|
technologies: ['playwright'],
|
|
168
170
|
description: 'Runs Playwright Tests in CI',
|