flakiness 0.234.0 → 0.236.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 CHANGED
@@ -73,6 +73,7 @@ var Heap = class _Heap {
73
73
  for (let idx = this._heap.length - 1; idx >= 0; --idx)
74
74
  this._down(idx);
75
75
  }
76
+ _cmp;
76
77
  static createMin(elements = []) {
77
78
  return new _Heap((a, b) => a - b, elements);
78
79
  }
@@ -143,6 +144,8 @@ var Sequence = class _Sequence {
143
144
  this._seek = _seek;
144
145
  this.length = length;
145
146
  }
147
+ _seek;
148
+ length;
146
149
  static fromList(a) {
147
150
  return new _Sequence(
148
151
  function(pos) {
@@ -1030,7 +1033,7 @@ import path7 from "path";
1030
1033
  // ../package.json
1031
1034
  var package_default = {
1032
1035
  name: "@flakiness/monorepo",
1033
- version: "0.234.0",
1036
+ version: "0.236.0",
1034
1037
  type: "module",
1035
1038
  private: true,
1036
1039
  scripts: {
@@ -1050,8 +1053,8 @@ var package_default = {
1050
1053
  devDependencies: {
1051
1054
  "@flakiness/playwright": "catalog:",
1052
1055
  "@playwright/test": "catalog:",
1053
- "@types/node": "^22.19.15",
1054
- esbuild: "^0.27.4",
1056
+ "@types/node": "^22.19.17",
1057
+ esbuild: "^0.27.7",
1055
1058
  flakiness: "workspace:*",
1056
1059
  kubik: "^0.24.0",
1057
1060
  "smee-client": "^5.0.0",
@@ -1152,6 +1155,7 @@ var TypedHTTP;
1152
1155
  super(message);
1153
1156
  this.status = status;
1154
1157
  }
1158
+ status;
1155
1159
  static withCode(code, message) {
1156
1160
  const statusCode = AllErrorCodes[code];
1157
1161
  const defaultMessage = code.split("_").map((word) => word.charAt(0) + word.slice(1).toLowerCase()).join(" ");
@@ -1200,6 +1204,7 @@ var TypedHTTP;
1200
1204
  constructor(_resolveContext) {
1201
1205
  this._resolveContext = _resolveContext;
1202
1206
  }
1207
+ _resolveContext;
1203
1208
  static create() {
1204
1209
  return new Router(async (e2) => e2.ctx);
1205
1210
  }
@@ -1339,6 +1344,7 @@ var UserSession = class _UserSession {
1339
1344
  this._config = _config;
1340
1345
  this.api = createServerAPI(this._config.endpoint, { auth: this._config.token });
1341
1346
  }
1347
+ _config;
1342
1348
  static async load() {
1343
1349
  const data = await fs.readFile(CONFIG_PATH, "utf-8").catch((e2) => void 0);
1344
1350
  if (!data)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flakiness",
3
- "version": "0.234.0",
3
+ "version": "0.236.0",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "flakiness": "./lib/cli/cli.js"
@@ -19,12 +19,12 @@
19
19
  "author": "Degu Labs, Inc",
20
20
  "license": "MIT",
21
21
  "devDependencies": {
22
- "@playwright/test": "^1.58.2",
22
+ "@playwright/test": "^1.59.1",
23
23
  "@types/debug": "^4.1.13",
24
24
  "@types/express": "^4.17.25",
25
25
  "gray-matter": "^4.0.3",
26
- "@flakiness/server": "0.234.0",
27
- "@flakiness/shared": "0.234.0"
26
+ "@flakiness/server": "0.236.0",
27
+ "@flakiness/shared": "0.236.0"
28
28
  },
29
29
  "dependencies": {
30
30
  "@flakiness/flakiness-report": "^0.29.0",