@nx/cypress 18.0.4 → 18.0.5

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.4",
3
+ "version": "18.0.5",
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.4",
38
- "@nx/eslint": "18.0.4",
39
- "@nx/js": "18.0.4",
37
+ "@nx/devkit": "18.0.5",
38
+ "@nx/eslint": "18.0.5",
39
+ "@nx/js": "18.0.5",
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.4"
44
+ "@nrwl/cypress": "18.0.5"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "cypress": ">= 3 < 14"
@@ -61,12 +61,21 @@ function startWebServer(webServerCommand) {
61
61
  */
62
62
  function nxE2EPreset(pathToConfig, options) {
63
63
  const basePath = options?.cypressDir || 'src';
64
+ const dir = (0, path_1.dirname)(pathToConfig);
65
+ let supportFile = undefined;
66
+ for (const f of ['e2e.ts', 'e2e.js']) {
67
+ const candidate = (0, path_1.join)(dir, basePath, 'support', f);
68
+ if ((0, fs_1.existsSync)(candidate)) {
69
+ supportFile = candidate;
70
+ break;
71
+ }
72
+ }
64
73
  const baseConfig /*Cypress.EndToEndConfigOptions & {
65
74
  [NX_PLUGIN_OPTIONS]: unknown;
66
75
  }*/ = {
67
76
  ...nxBaseCypressPreset(pathToConfig),
68
77
  fileServerFolder: '.',
69
- supportFile: `${basePath}/support/e2e.{js,ts}`,
78
+ supportFile,
70
79
  specPattern: `${basePath}/**/*.cy.{js,jsx,ts,tsx}`,
71
80
  fixturesFolder: `${basePath}/fixtures`,
72
81
  [constants_1.NX_PLUGIN_OPTIONS]: {
@@ -128,11 +128,12 @@ async function addFiles(tree, options, projectGraph, hasPlugin) {
128
128
  const devServerProjectConfig = (0, devkit_1.readProjectConfiguration)(tree, parsedTarget.project);
129
129
  // Add production e2e target if serve target is found
130
130
  if (parsedTarget.configuration !== 'production' &&
131
- devServerProjectConfig.targets[parsedTarget.target]?.configurations?.['production']) {
131
+ devServerProjectConfig?.targets?.[parsedTarget.target]
132
+ ?.configurations?.['production']) {
132
133
  webServerCommands.production = `nx run ${parsedTarget.project}:${parsedTarget.target}:production`;
133
134
  }
134
135
  // Add ci/static e2e target if serve target is found
135
- if (devServerProjectConfig.targets?.['serve-static']) {
136
+ if (devServerProjectConfig?.targets?.['serve-static']) {
136
137
  ciWebServerCommand = `nx run ${parsedTarget.project}:serve-static`;
137
138
  }
138
139
  }
@@ -165,6 +166,7 @@ async function addFiles(tree, options, projectGraph, hasPlugin) {
165
166
  function addTarget(tree, opts) {
166
167
  const projectConfig = (0, devkit_1.readProjectConfiguration)(tree, opts.project);
167
168
  const cyVersion = (0, cypress_version_1.installedCypressVersion)();
169
+ projectConfig.targets ??= {};
168
170
  projectConfig.targets.e2e = {
169
171
  executor: '@nx/cypress:cypress',
170
172
  options: {
@@ -2,7 +2,7 @@ export declare const nxVersion: any;
2
2
  export declare const eslintPluginCypressVersion = "^2.13.4";
3
3
  export declare const typesNodeVersion = "18.16.9";
4
4
  export declare const cypressViteDevServerVersion = "^2.2.1";
5
- export declare const cypressVersion = "^13.0.0";
5
+ export declare const cypressVersion = "13.6.4";
6
6
  export declare const cypressWebpackVersion = "^2.0.0";
7
7
  export declare const webpackHttpPluginVersion = "^5.5.0";
8
8
  export declare const viteVersion = "~5.0.0";
@@ -5,7 +5,7 @@ exports.nxVersion = require('../../package.json').version;
5
5
  exports.eslintPluginCypressVersion = '^2.13.4';
6
6
  exports.typesNodeVersion = '18.16.9';
7
7
  exports.cypressViteDevServerVersion = '^2.2.1';
8
- exports.cypressVersion = '^13.0.0';
8
+ exports.cypressVersion = '13.6.4';
9
9
  exports.cypressWebpackVersion = '^2.0.0';
10
10
  exports.webpackHttpPluginVersion = '^5.5.0';
11
11
  exports.viteVersion = '~5.0.0';