@tui-sandbox/library 11.8.1 → 11.8.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tui-sandbox/library",
3
- "version": "11.8.1",
3
+ "version": "11.8.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/mikavilpas/tui-sandbox"
@@ -19,24 +19,24 @@
19
19
  "@xterm/xterm": "5.5.0",
20
20
  "concurrently": "9.2.1",
21
21
  "cors": "2.8.5",
22
- "cypress": "15.1.0",
23
22
  "dree": "5.1.5",
24
23
  "express": "5.1.0",
25
24
  "neovim": "5.4.0",
26
25
  "node-pty": "1.0.0",
27
26
  "prettier": "3.6.2",
28
27
  "tsx": "4.20.5",
29
- "type-fest": "4.41.0",
30
28
  "winston": "3.17.0",
31
- "zod": "4.1.5"
29
+ "zod": "4.1.11"
32
30
  },
33
31
  "devDependencies": {
34
32
  "@types/command-exists": "1.2.3",
35
33
  "@types/cors": "2.8.19",
36
34
  "@types/express": "5.0.3",
37
- "@types/node": "24.3.1",
35
+ "@types/node": "24.5.2",
36
+ "cypress": "15.2.0",
38
37
  "nodemon": "3.1.10",
39
- "vite": "7.1.5",
38
+ "type-fest": "5.0.1",
39
+ "vite": "7.1.6",
40
40
  "vitest": "3.2.4"
41
41
  },
42
42
  "peerDependencies": {
@@ -44,7 +44,7 @@
44
44
  "prettier": ">= 3.3.3",
45
45
  "type-fest": ">= 4.27.0",
46
46
  "typescript": ">= 5.6.3",
47
- "wait-on": "8.0.4",
47
+ "wait-on": ">=9.0.0",
48
48
  "zod": ">=4.0.0-0 <5"
49
49
  },
50
50
  "engines": {
@@ -198,7 +198,7 @@ export async function waitForLuaCode(
198
198
  running = false
199
199
  })
200
200
 
201
- const failureMessages: string[] = []
201
+ const failureMessages = new Set<string>()
202
202
  const reportFailure = () => {
203
203
  console.warn(`Polling Lua code: '${options.luaAssertion}' failed. Failure messages:`, failureMessages)
204
204
  }
@@ -217,7 +217,7 @@ export async function waitForLuaCode(
217
217
 
218
218
  return { value }
219
219
  } catch (e) {
220
- failureMessages.push(`Caught error in iteration ${iteration}: ${String(e)}`)
220
+ failureMessages.add(String(e))
221
221
  await timeout(100)
222
222
  }
223
223
  }