cypress-validate 1.0.1 → 1.0.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/README.md CHANGED
@@ -48,7 +48,20 @@ npx cypress-validate show-report
48
48
 
49
49
  ---
50
50
 
51
- ## 📋 Command Reference
51
+ ## �️ Troubleshooting
52
+
53
+ ### Peer Dependency Conflicts (`ERESOLVE`)
54
+ If you see an `ERESOLVE could not resolve` error during installation, it is usually because another plugin in your project (like `@4tw/cypress-drag-drop`) has a strict peer dependency on an older version of Cypress (e.g., `< 14`), while you are using a newer version.
55
+
56
+ To bypass this and install `cypress-validate`, use:
57
+
58
+ ```bash
59
+ npm install --save-dev cypress-validate --legacy-peer-deps
60
+ ```
61
+
62
+ ---
63
+
64
+ ## �📋 Command Reference
52
65
 
53
66
  ### `run` — Run tests headlessly *(like `npx playwright test`)*
54
67
 
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  'use strict';
3
3
 
4
4
  const { Command } = require('commander');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress-validate",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A Playwright-style CLI for Cypress — run, open, generate, screenshot, report and more via npx cypress-validate",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
@@ -68,4 +68,4 @@
68
68
  "mochawesome-merge": "^5.1.1",
69
69
  "mochawesome-report-generator": "^6.3.2"
70
70
  }
71
- }
71
+ }