@nx/playwright 20.0.0-beta.1 → 20.0.0-canary.20240925-6182d20

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": "20.0.0-beta.1",
3
+ "version": "20.0.0-canary.20240925-6182d20",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://nx.dev",
6
6
  "private": false,
@@ -35,11 +35,11 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@phenomnomnominal/tsquery": "~5.0.1",
38
- "@nx/devkit": "20.0.0-beta.1",
39
- "@nx/eslint": "20.0.0-beta.1",
40
- "@nx/webpack": "20.0.0-beta.1",
41
- "@nx/vite": "20.0.0-beta.1",
42
- "@nx/js": "20.0.0-beta.1",
38
+ "@nx/devkit": "20.0.0-canary.20240925-6182d20",
39
+ "@nx/eslint": "20.0.0-canary.20240925-6182d20",
40
+ "@nx/webpack": "20.0.0-canary.20240925-6182d20",
41
+ "@nx/vite": "20.0.0-canary.20240925-6182d20",
42
+ "@nx/js": "20.0.0-canary.20240925-6182d20",
43
43
  "tslib": "^2.3.0",
44
44
  "minimatch": "9.0.3"
45
45
  },
@@ -17,6 +17,7 @@ async function playwrightExecutor(options, context) {
17
17
  (0, child_process_1.execSync)(`${pmc.exec} playwright install`, {
18
18
  cwd: devkit_1.workspaceRoot,
19
19
  stdio: 'inherit',
20
+ windowsHide: true,
20
21
  });
21
22
  }
22
23
  const args = createArgs(options);
@@ -98,7 +98,10 @@ function getBrowsersInstallTask() {
98
98
  bodyLines: ['use --skipInstall to skip installation.'],
99
99
  });
100
100
  const pmc = (0, devkit_1.getPackageManagerCommand)();
101
- (0, child_process_1.execSync)(`${pmc.exec} playwright install`, { cwd: devkit_1.workspaceRoot });
101
+ (0, child_process_1.execSync)(`${pmc.exec} playwright install`, {
102
+ cwd: devkit_1.workspaceRoot,
103
+ windowsHide: true,
104
+ });
102
105
  };
103
106
  }
104
107
  function recommendVsCodeExtensions(tree) {