@nx/playwright 19.3.0 → 19.3.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/playwright",
3
- "version": "19.3.0",
3
+ "version": "19.3.2",
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.3.0",
39
- "@nx/eslint": "19.3.0",
40
- "@nx/js": "19.3.0",
38
+ "@nx/devkit": "19.3.2",
39
+ "@nx/eslint": "19.3.2",
40
+ "@nx/js": "19.3.2",
41
41
  "tslib": "^2.3.0",
42
42
  "minimatch": "9.0.3"
43
43
  },
@@ -11,7 +11,7 @@ export interface PlaywrightExecutorSchema {
11
11
  testFiles?: string[];
12
12
  headed?: boolean;
13
13
  ignoreSnapshots?: boolean;
14
- workers?: string;
14
+ workers?: number | string;
15
15
  list?: boolean;
16
16
  maxFailures?: number | boolean;
17
17
  noDeps?: boolean;
@@ -62,7 +62,7 @@
62
62
  },
63
63
  "workers": {
64
64
  "alias": "j",
65
- "type": "string",
65
+ "oneOf": [{ "type": "number" }, { "type": "string" }],
66
66
  "description": "Number of concurrent workers or percentage of logical CPU cores, use 1 to run in a single worker"
67
67
  },
68
68
  "list": {