flakiness 0.164.0 → 0.166.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/lib/cli/cli.js +3 -1
- package/package.json +3 -3
- package/types/tsconfig.tsbuildinfo +1 -1
package/lib/cli/cli.js
CHANGED
|
@@ -560,6 +560,8 @@ var Ranges;
|
|
|
560
560
|
}
|
|
561
561
|
Ranges2.complement = complement;
|
|
562
562
|
function subtract(ranges1, ranges2) {
|
|
563
|
+
if (!ranges2.length)
|
|
564
|
+
return ranges1;
|
|
563
565
|
return intersect(ranges1, complement(ranges2));
|
|
564
566
|
}
|
|
565
567
|
Ranges2.subtract = subtract;
|
|
@@ -977,7 +979,7 @@ import path6 from "path";
|
|
|
977
979
|
// ../package.json
|
|
978
980
|
var package_default = {
|
|
979
981
|
name: "flakiness",
|
|
980
|
-
version: "0.
|
|
982
|
+
version: "0.166.0",
|
|
981
983
|
type: "module",
|
|
982
984
|
private: true,
|
|
983
985
|
scripts: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flakiness",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.166.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"flakiness": "./lib/cli/cli.js"
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"@playwright/test": "^1.57.0",
|
|
23
23
|
"@types/debug": "^4.1.12",
|
|
24
24
|
"@types/express": "^4.17.20",
|
|
25
|
-
"@flakiness/server": "0.
|
|
26
|
-
"@flakiness/shared": "0.
|
|
25
|
+
"@flakiness/server": "0.166.0",
|
|
26
|
+
"@flakiness/shared": "0.166.0"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@flakiness/flakiness-report": "^0.22.0",
|