@nx/cypress 22.3.1 → 22.3.2
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 +16 -0
- package/package.json +5 -5
- package/src/utils/versions.d.ts +2 -2
- package/src/utils/versions.js +2 -2
package/migrations.json
CHANGED
|
@@ -108,6 +108,22 @@
|
|
|
108
108
|
"alwaysAddToPackageJson": false
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
|
+
},
|
|
112
|
+
"22.3.2": {
|
|
113
|
+
"version": "22.3.2-beta.0",
|
|
114
|
+
"requires": {
|
|
115
|
+
"cypress": ">=15.0.0 <15.8.0"
|
|
116
|
+
},
|
|
117
|
+
"packages": {
|
|
118
|
+
"cypress": {
|
|
119
|
+
"version": "^15.8.0",
|
|
120
|
+
"alwaysAddToPackageJson": false
|
|
121
|
+
},
|
|
122
|
+
"@cypress/webpack-dev-server": {
|
|
123
|
+
"version": "^5.4.1",
|
|
124
|
+
"alwaysAddToPackageJson": false
|
|
125
|
+
}
|
|
126
|
+
}
|
|
111
127
|
}
|
|
112
128
|
}
|
|
113
129
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/cypress",
|
|
3
|
-
"version": "22.3.
|
|
3
|
+
"version": "22.3.2",
|
|
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,9 +36,9 @@
|
|
|
36
36
|
"migrations": "./migrations.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@nx/devkit": "22.3.
|
|
40
|
-
"@nx/eslint": "22.3.
|
|
41
|
-
"@nx/js": "22.3.
|
|
39
|
+
"@nx/devkit": "22.3.2",
|
|
40
|
+
"@nx/eslint": "22.3.2",
|
|
41
|
+
"@nx/js": "22.3.2",
|
|
42
42
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
43
43
|
"detect-port": "^1.5.1",
|
|
44
44
|
"semver": "^7.6.3",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"tslib": "^2.3.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"nx": "22.3.
|
|
49
|
+
"nx": "22.3.2"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"cypress": ">= 13 < 16"
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ export declare const nxVersion: any;
|
|
|
3
3
|
export declare const eslintPluginCypressVersion = "^3.5.0";
|
|
4
4
|
export declare const typesNodeVersion = "20.19.9";
|
|
5
5
|
export declare const cypressViteDevServerVersion = "^7.0.1";
|
|
6
|
-
export declare const cypressVersion = "^15.
|
|
7
|
-
export declare const cypressWebpackVersion = "^5.1
|
|
6
|
+
export declare const cypressVersion = "^15.8.0";
|
|
7
|
+
export declare const cypressWebpackVersion = "^5.4.1";
|
|
8
8
|
export declare const viteVersion = "^6.0.0";
|
|
9
9
|
export declare const htmlWebpackPluginVersion = "^5.5.0";
|
|
10
10
|
export type CypressVersions = Record<keyof Omit<typeof import('./versions'), 'nxVersion' | 'versions' | 'getInstalledCypressVersion' | 'getInstalledCypressMajorVersion' | 'assertMinimumCypressVersion'>, string>;
|
package/src/utils/versions.js
CHANGED
|
@@ -11,8 +11,8 @@ exports.nxVersion = require('../../package.json').version;
|
|
|
11
11
|
exports.eslintPluginCypressVersion = '^3.5.0';
|
|
12
12
|
exports.typesNodeVersion = '20.19.9';
|
|
13
13
|
exports.cypressViteDevServerVersion = '^7.0.1';
|
|
14
|
-
exports.cypressVersion = '^15.
|
|
15
|
-
exports.cypressWebpackVersion = '^5.1
|
|
14
|
+
exports.cypressVersion = '^15.8.0';
|
|
15
|
+
exports.cypressWebpackVersion = '^5.4.1';
|
|
16
16
|
exports.viteVersion = '^6.0.0';
|
|
17
17
|
exports.htmlWebpackPluginVersion = '^5.5.0';
|
|
18
18
|
const latestVersions = {
|