@nx/playwright 21.0.0-canary.20250416-caa26a7 → 21.0.0-canary.20250418-8619c1d
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/playwright",
|
|
3
|
-
"version": "21.0.0-canary.
|
|
3
|
+
"version": "21.0.0-canary.20250418-8619c1d",
|
|
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": "21.0.0-canary.
|
|
39
|
-
"@nx/eslint": "21.0.0-canary.
|
|
40
|
-
"@nx/js": "21.0.0-canary.
|
|
38
|
+
"@nx/devkit": "21.0.0-canary.20250418-8619c1d",
|
|
39
|
+
"@nx/eslint": "21.0.0-canary.20250418-8619c1d",
|
|
40
|
+
"@nx/js": "21.0.0-canary.20250418-8619c1d",
|
|
41
41
|
"tslib": "^2.3.0",
|
|
42
42
|
"minimatch": "9.0.3"
|
|
43
43
|
},
|
package/src/plugins/plugin.js
CHANGED
|
@@ -187,7 +187,6 @@ async function buildPlaywrightTargets(configFilePath, projectRoot, options, cont
|
|
|
187
187
|
inputs: ciBaseTargetConfig.inputs,
|
|
188
188
|
outputs: ciBaseTargetConfig.outputs,
|
|
189
189
|
dependsOn,
|
|
190
|
-
parallelism: false,
|
|
191
190
|
metadata: {
|
|
192
191
|
technologies: ['playwright'],
|
|
193
192
|
description: 'Runs Playwright Tests in CI',
|
|
@@ -202,6 +201,9 @@ async function buildPlaywrightTargets(configFilePath, projectRoot, options, cont
|
|
|
202
201
|
},
|
|
203
202
|
},
|
|
204
203
|
};
|
|
204
|
+
if (!webserverCommandTasks.length) {
|
|
205
|
+
targets[options.ciTargetName].parallelism = false;
|
|
206
|
+
}
|
|
205
207
|
ciTargetGroup.push(options.ciTargetName);
|
|
206
208
|
}
|
|
207
209
|
return { targets, metadata };
|