@nx/cypress 17.3.0-beta.1 → 17.3.0-beta.3

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/migrations.json CHANGED
@@ -91,6 +91,15 @@
91
91
  "alwaysAddToPackageJson": false
92
92
  }
93
93
  }
94
+ },
95
+ "17.3.0": {
96
+ "version": "17.3.0-beta.3",
97
+ "packages": {
98
+ "@types/node": {
99
+ "version": "18.16.9",
100
+ "alwaysAddToPackageJson": false
101
+ }
102
+ }
94
103
  }
95
104
  }
96
105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/cypress",
3
- "version": "17.3.0-beta.1",
3
+ "version": "17.3.0-beta.3",
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": "17.3.0-beta.1",
38
- "@nx/eslint": "17.3.0-beta.1",
39
- "@nx/js": "17.3.0-beta.1",
37
+ "@nx/devkit": "17.3.0-beta.3",
38
+ "@nx/eslint": "17.3.0-beta.3",
39
+ "@nx/js": "17.3.0-beta.3",
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": "17.3.0-beta.1"
44
+ "@nrwl/cypress": "17.3.0-beta.3"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "cypress": ">= 3 < 14"
@@ -25,7 +25,7 @@ export interface CypressExecutorOptions extends Json {
25
25
  copyFiles?: string;
26
26
  ciBuildId?: string | number;
27
27
  group?: string;
28
- ignoreTestFiles?: string;
28
+ ignoreTestFiles?: string | string[];
29
29
  reporter?: string;
30
30
  reporterOptions?: string | Json;
31
31
  skipServe?: boolean;
@@ -113,7 +113,17 @@
113
113
  },
114
114
  "ignoreTestFiles": {
115
115
  "aliases": ["excludeSpecPattern"],
116
- "type": "string",
116
+ "oneOf": [
117
+ {
118
+ "type": "string"
119
+ },
120
+ {
121
+ "type": "array",
122
+ "items": {
123
+ "type": "string"
124
+ }
125
+ }
126
+ ],
117
127
  "description": "A String or Array of glob patterns used to ignore test files that would otherwise be shown in your list of tests. Cypress uses minimatch with the options: `{dot: true, matchBase: true}`. We suggest using https://globster.xyz to test what files would match."
118
128
  },
119
129
  "reporter": {
@@ -1,6 +1,6 @@
1
1
  export declare const nxVersion: any;
2
2
  export declare const eslintPluginCypressVersion = "^2.13.4";
3
- export declare const typesNodeVersion = "16.11.7";
3
+ export declare const typesNodeVersion = "18.16.9";
4
4
  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";
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.htmlWebpackPluginVersion = exports.viteVersion = exports.webpackHttpPluginVersion = exports.cypressWebpackVersion = exports.cypressVersion = exports.cypressViteDevServerVersion = exports.typesNodeVersion = exports.eslintPluginCypressVersion = exports.nxVersion = void 0;
4
4
  exports.nxVersion = require('../../package.json').version;
5
5
  exports.eslintPluginCypressVersion = '^2.13.4';
6
- exports.typesNodeVersion = '16.11.7';
6
+ exports.typesNodeVersion = '18.16.9';
7
7
  exports.cypressViteDevServerVersion = '^2.2.1';
8
8
  exports.cypressVersion = '^13.0.0';
9
9
  exports.cypressWebpackVersion = '^2.0.0';