@nx/playwright 18.3.0-canary.20240330-ef81455 → 18.3.0-canary.20240403-270788e

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": "18.3.0-canary.20240330-ef81455",
3
+ "version": "18.3.0-canary.20240403-270788e",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://nx.dev",
6
6
  "private": false,
@@ -33,9 +33,9 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@phenomnomnominal/tsquery": "~5.0.1",
36
- "@nx/devkit": "18.3.0-canary.20240330-ef81455",
37
- "@nx/eslint": "18.3.0-canary.20240330-ef81455",
38
- "@nx/js": "18.3.0-canary.20240330-ef81455",
36
+ "@nx/devkit": "18.3.0-canary.20240403-270788e",
37
+ "@nx/eslint": "18.3.0-canary.20240403-270788e",
38
+ "@nx/js": "18.3.0-canary.20240403-270788e",
39
39
  "tslib": "^2.3.0",
40
40
  "minimatch": "9.0.3"
41
41
  },
@@ -28,7 +28,7 @@ export interface PlaywrightExecutorSchema {
28
28
  updateSnapshots?: boolean;
29
29
  ui?: boolean;
30
30
  uiHost?: string;
31
- uiPort?: string;
31
+ uiPort?: number;
32
32
  skipInstall?: boolean;
33
33
  }
34
34
  export declare function playwrightExecutor(options: PlaywrightExecutorSchema, context: ExecutorContext): Promise<{
@@ -155,7 +155,7 @@
155
155
  "description": "Host to serve UI on; specifying this option opens UI in a browser tab"
156
156
  },
157
157
  "uiPort": {
158
- "type": "string",
158
+ "type": "number",
159
159
  "description": "Port to serve UI on, 0 for any free port; specifying this option opens UI in a browser tab"
160
160
  },
161
161
  "skipInstall": {