deflake 1.0.0 → 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 +6 -2
- package/cli.js +2 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -30,5 +30,9 @@ Analyze an existing error log and HTML snapshot:
|
|
|
30
30
|
npx deflake --log error.log --html playwright-report/index.html
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
## 📄
|
|
34
|
-
|
|
33
|
+
## 📄 Support & Documentation
|
|
34
|
+
|
|
35
|
+
For issues, feature requests, or to get your API key, please visit our [Official Portal](https://deflake-api.up.railway.app).
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
© 2026 DeFlake AI. All rights reserved.
|
package/cli.js
CHANGED
|
@@ -5,6 +5,7 @@ const DeFlakeClient = require('./client');
|
|
|
5
5
|
const { spawn } = require('child_process');
|
|
6
6
|
const fs = require('fs');
|
|
7
7
|
const path = require('path');
|
|
8
|
+
const pkg = require('./package.json');
|
|
8
9
|
|
|
9
10
|
const argv = yargs(hideBin(process.argv))
|
|
10
11
|
.option('log', {
|
|
@@ -23,6 +24,7 @@ const argv = yargs(hideBin(process.argv))
|
|
|
23
24
|
type: 'string',
|
|
24
25
|
description: 'Override Default API URL',
|
|
25
26
|
})
|
|
27
|
+
.version(pkg.version)
|
|
26
28
|
.help()
|
|
27
29
|
.argv;
|
|
28
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deflake",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "AI-powered self-healing tool for Playwright, Cypress, and WebdriverIO tests.",
|
|
5
5
|
"main": "client.js",
|
|
6
6
|
"bin": {
|
|
@@ -34,4 +34,4 @@
|
|
|
34
34
|
"dotenv": "^17.2.3",
|
|
35
35
|
"yargs": "^18.0.0"
|
|
36
36
|
}
|
|
37
|
-
}
|
|
37
|
+
}
|