@nx/playwright 18.2.2 → 18.2.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/playwright",
3
- "version": "18.2.2",
3
+ "version": "18.2.4",
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.2.2",
37
- "@nx/eslint": "18.2.2",
38
- "@nx/js": "18.2.2",
36
+ "@nx/devkit": "18.2.4",
37
+ "@nx/eslint": "18.2.4",
38
+ "@nx/js": "18.2.4",
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": {