@nx/cypress 18.0.3 → 18.1.0-beta.0

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/cypress",
3
- "version": "18.0.3",
3
+ "version": "18.1.0-beta.0",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Cypress contains executors and generators allowing your workspace to use the powerful Cypress integration testing capabilities.",
6
6
  "repository": {
@@ -34,14 +34,14 @@
34
34
  "migrations": "./migrations.json"
35
35
  },
36
36
  "dependencies": {
37
- "@nx/devkit": "18.0.3",
38
- "@nx/eslint": "18.0.3",
39
- "@nx/js": "18.0.3",
37
+ "@nx/devkit": "18.1.0-beta.0",
38
+ "@nx/eslint": "18.1.0-beta.0",
39
+ "@nx/js": "18.1.0-beta.0",
40
40
  "@phenomnomnominal/tsquery": "~5.0.1",
41
41
  "detect-port": "^1.5.1",
42
42
  "semver": "^7.5.3",
43
43
  "tslib": "^2.3.0",
44
- "@nrwl/cypress": "18.0.3"
44
+ "@nrwl/cypress": "18.1.0-beta.0"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "cypress": ">= 3 < 14"
@@ -30,13 +30,18 @@ function nxBaseCypressPreset(pathToConfig, options) {
30
30
  }
31
31
  exports.nxBaseCypressPreset = nxBaseCypressPreset;
32
32
  function startWebServer(webServerCommand) {
33
- const serverProcess = (0, child_process_1.exec)(webServerCommand, {
33
+ const serverProcess = (0, child_process_1.spawn)(webServerCommand, {
34
34
  cwd: devkit_1.workspaceRoot,
35
+ shell: true,
36
+ // Detaching the process on unix will create a process group, allowing us to kill it later
37
+ // Windows is fine so we leave it attached to this process
38
+ detached: process.platform !== 'win32',
39
+ stdio: 'inherit',
35
40
  });
36
- serverProcess.stdout.pipe(process.stdout);
37
- serverProcess.stderr.pipe(process.stderr);
38
41
  return () => {
39
- serverProcess.kill();
42
+ // child.kill() does not work on linux
43
+ // process.kill will kill the whole process group on unix
44
+ process.kill(-serverProcess.pid, 'SIGKILL');
40
45
  };
41
46
  }
42
47
  /**
@@ -108,7 +113,7 @@ function waitForServer(url, webServerConfig) {
108
113
  return new Promise((resolve, reject) => {
109
114
  let pollTimeout;
110
115
  const { protocol } = new URL(url);
111
- const timeoutDuration = webServerConfig?.timeout ?? 10 * 1000;
116
+ const timeoutDuration = webServerConfig?.timeout ?? 15 * 1000;
112
117
  const timeout = setTimeout(() => {
113
118
  clearTimeout(pollTimeout);
114
119
  reject(new Error(`Web server failed to start in ${timeoutDuration}ms. This can be configured in cypress.config.ts.`));
@@ -5,5 +5,5 @@ export declare const cypressViteDevServerVersion = "^2.2.1";
5
5
  export declare const cypressVersion = "^13.0.0";
6
6
  export declare const cypressWebpackVersion = "^2.0.0";
7
7
  export declare const webpackHttpPluginVersion = "^5.5.0";
8
- export declare const viteVersion = "^5.0.0";
8
+ export declare const viteVersion = "~5.0.0";
9
9
  export declare const htmlWebpackPluginVersion = "^5.5.0";
@@ -8,5 +8,5 @@ exports.cypressViteDevServerVersion = '^2.2.1';
8
8
  exports.cypressVersion = '^13.0.0';
9
9
  exports.cypressWebpackVersion = '^2.0.0';
10
10
  exports.webpackHttpPluginVersion = '^5.5.0';
11
- exports.viteVersion = '^5.0.0';
11
+ exports.viteVersion = '~5.0.0';
12
12
  exports.htmlWebpackPluginVersion = '^5.5.0';