cypress-dragndrop-kit 1.0.11 → 1.1.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/README.md +3 -0
- package/package.json +7 -5
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
A lightweight, Cypress-native plugin that simplifies drag‑and‑drop and movement interactions in end-to-end tests. Perfect for testing sortable lists, draggable elements, and custom UI components.
|
|
4
4
|
|
|
5
|
+
> **IMPORTANT**:
|
|
6
|
+
> - Version `v1.0.11` and below of this package can be used with Cypress v14
|
|
7
|
+
> - Version `v1.1.0` can be used with Cypress v15
|
|
5
8
|
|
|
6
9
|
<br/>
|
|
7
10
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cypress-dragndrop-kit",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Custom command meant for interacting with draggable elements in the UI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/types.d.ts",
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
8
10
|
"scripts": {
|
|
9
11
|
"build": "rm -rf dist/* && tsc && cp src/types.d.ts dist/",
|
|
10
12
|
"publish": "npx semantic-release",
|
|
@@ -21,7 +23,7 @@
|
|
|
21
23
|
"drag-and-drop"
|
|
22
24
|
],
|
|
23
25
|
"peerDependencies": {
|
|
24
|
-
"cypress": "^
|
|
26
|
+
"cypress": "^15.0.0"
|
|
25
27
|
},
|
|
26
28
|
"devDependencies": {
|
|
27
29
|
"@types/node": "^24.0.1",
|
|
@@ -30,10 +32,10 @@
|
|
|
30
32
|
},
|
|
31
33
|
"repository": {
|
|
32
34
|
"type": "git",
|
|
33
|
-
"url": "https://github.com/vergjor/cypress-dragndrop-kit.git"
|
|
35
|
+
"url": "git+https://github.com/vergjor/cypress-dragndrop-kit.git"
|
|
34
36
|
},
|
|
35
37
|
"bugs": {
|
|
36
38
|
"url": "https://github.com/vergjor/cypress-dragndrop-kit/issues"
|
|
37
39
|
},
|
|
38
40
|
"homepage": "https://github.com/vergjor/cypress-dragndrop-kit#readme"
|
|
39
|
-
}
|
|
41
|
+
}
|