@nx/cypress 19.4.0-rc.0 → 19.4.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/migrations.json +12 -0
- package/package.json +5 -5
- package/src/plugins/plugin.js +0 -1
- package/src/utils/versions.d.ts +1 -1
- package/src/utils/versions.js +1 -1
package/migrations.json
CHANGED
|
@@ -98,6 +98,18 @@
|
|
|
98
98
|
"alwaysAddToPackageJson": false
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
|
+
},
|
|
102
|
+
"19.4.1": {
|
|
103
|
+
"version": "19.4.1-beta.0",
|
|
104
|
+
"requires": {
|
|
105
|
+
"cypress": "^13.0.0"
|
|
106
|
+
},
|
|
107
|
+
"packages": {
|
|
108
|
+
"cypress": {
|
|
109
|
+
"version": "^13.13.0",
|
|
110
|
+
"alwaysAddToPackageJson": false
|
|
111
|
+
}
|
|
112
|
+
}
|
|
101
113
|
}
|
|
102
114
|
}
|
|
103
115
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/cypress",
|
|
3
|
-
"version": "19.4.0
|
|
3
|
+
"version": "19.4.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": {
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"migrations": "./migrations.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@nx/devkit": "19.4.0
|
|
40
|
-
"@nx/eslint": "19.4.0
|
|
41
|
-
"@nx/js": "19.4.0
|
|
39
|
+
"@nx/devkit": "19.4.0",
|
|
40
|
+
"@nx/eslint": "19.4.0",
|
|
41
|
+
"@nx/js": "19.4.0",
|
|
42
42
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
43
43
|
"detect-port": "^1.5.1",
|
|
44
44
|
"tslib": "^2.3.0",
|
|
45
|
-
"@nrwl/cypress": "19.4.0
|
|
45
|
+
"@nrwl/cypress": "19.4.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"cypress": ">= 3 < 14"
|
package/src/plugins/plugin.js
CHANGED
|
@@ -180,7 +180,6 @@ async function buildCypressTargets(configFilePath, projectRoot, options, context
|
|
|
180
180
|
metadata: {
|
|
181
181
|
technologies: ['cypress'],
|
|
182
182
|
description: `Runs Cypress Tests in ${relativeSpecFilePath} in CI`,
|
|
183
|
-
nonAtomizedTarget: options.targetName,
|
|
184
183
|
help: {
|
|
185
184
|
command: `${pmc.exec} cypress run --help`,
|
|
186
185
|
example: {
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -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.
|
|
5
|
+
export declare const cypressVersion = "^13.13.0";
|
|
6
6
|
export declare const cypressWebpackVersion = "^3.8.0";
|
|
7
7
|
export declare const viteVersion = "~5.0.0";
|
|
8
8
|
export declare const htmlWebpackPluginVersion = "^5.5.0";
|
package/src/utils/versions.js
CHANGED
|
@@ -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.
|
|
8
|
+
exports.cypressVersion = '^13.13.0';
|
|
9
9
|
exports.cypressWebpackVersion = '^3.8.0';
|
|
10
10
|
exports.viteVersion = '~5.0.0';
|
|
11
11
|
exports.htmlWebpackPluginVersion = '^5.5.0';
|