@tui-sandbox/library 11.8.0 → 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/CHANGELOG.md +64 -0
- package/dist/browser/assets/{index-CSykLFiU.js → index-I3bAGYav.js} +7 -7
- package/dist/browser/index.html +1 -1
- package/dist/src/server/applications/neovim/api.js +2 -2
- package/dist/src/server/applications/neovim/api.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/server/applications/neovim/api.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tui-sandbox/library",
|
|
3
|
-
"version": "11.8.
|
|
3
|
+
"version": "11.8.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/mikavilpas/tui-sandbox"
|
|
@@ -12,31 +12,31 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@catppuccin/palette": "1.7.1",
|
|
15
|
-
"@trpc/client": "11.5.
|
|
16
|
-
"@trpc/server": "11.5.
|
|
15
|
+
"@trpc/client": "11.5.1",
|
|
16
|
+
"@trpc/server": "11.5.1",
|
|
17
17
|
"@xterm/addon-fit": "0.10.0",
|
|
18
18
|
"@xterm/addon-unicode11": "0.8.0",
|
|
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.
|
|
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.
|
|
35
|
+
"@types/node": "24.5.2",
|
|
36
|
+
"cypress": "15.2.0",
|
|
38
37
|
"nodemon": "3.1.10",
|
|
39
|
-
"
|
|
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": "
|
|
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
|
|
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.
|
|
220
|
+
failureMessages.add(String(e))
|
|
221
221
|
await timeout(100)
|
|
222
222
|
}
|
|
223
223
|
}
|