@tui-sandbox/library 10.6.0 → 10.6.1
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 +7 -0
- package/dist/browser/assets/index-BYvynUT_.css +32 -0
- package/dist/browser/assets/index-NiH4zpUV.js +9 -0
- package/dist/browser/index.html +2 -2
- package/dist/src/server/applications/neovim/NeovimApplication.js +5 -2
- package/dist/src/server/applications/neovim/NeovimApplication.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/src/server/applications/neovim/NeovimApplication.ts +4 -3
- package/dist/browser/assets/index-BWYutne-.js +0 -9
- package/dist/browser/assets/index-D6fBrqAi.css +0 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tui-sandbox/library",
|
|
3
|
-
"version": "10.6.
|
|
3
|
+
"version": "10.6.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/mikavilpas/tui-sandbox"
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@catppuccin/palette": "1.7.1",
|
|
15
|
-
"@trpc/client": "11.4.
|
|
16
|
-
"@trpc/server": "11.4.
|
|
15
|
+
"@trpc/client": "11.4.2",
|
|
16
|
+
"@trpc/server": "11.4.2",
|
|
17
17
|
"@xterm/addon-attach": "0.11.0",
|
|
18
18
|
"@xterm/addon-fit": "0.10.0",
|
|
19
19
|
"@xterm/xterm": "5.5.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"express": "5.1.0",
|
|
25
25
|
"neovim": "5.3.0",
|
|
26
26
|
"node-pty": "1.0.0",
|
|
27
|
-
"prettier": "3.
|
|
27
|
+
"prettier": "3.6.1",
|
|
28
28
|
"tsx": "4.20.3",
|
|
29
29
|
"type-fest": "4.41.0",
|
|
30
30
|
"winston": "3.17.0"
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"@types/command-exists": "1.2.3",
|
|
34
34
|
"@types/cors": "2.8.19",
|
|
35
35
|
"@types/express": "5.0.3",
|
|
36
|
-
"@types/node": "24.0.
|
|
36
|
+
"@types/node": "24.0.4",
|
|
37
37
|
"nodemon": "3.1.10",
|
|
38
|
-
"vite": "
|
|
39
|
-
"vitest": "3.2.
|
|
38
|
+
"vite": "7.0.0",
|
|
39
|
+
"vitest": "3.2.4",
|
|
40
40
|
"zod": "4.0.0-beta.20250505T195954"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
@@ -202,11 +202,12 @@ export class NeovimApplication implements AsyncDisposable {
|
|
|
202
202
|
|
|
203
203
|
try {
|
|
204
204
|
await access(this.state.socketPath)
|
|
205
|
-
|
|
205
|
+
console.warn(`Socket file ${this.state.socketPath} should have been removed by neovim when it exited.`)
|
|
206
|
+
return
|
|
206
207
|
} catch (e) {
|
|
207
208
|
// all good
|
|
209
|
+
} finally {
|
|
210
|
+
this.state = undefined
|
|
208
211
|
}
|
|
209
|
-
|
|
210
|
-
this.state = undefined
|
|
211
212
|
}
|
|
212
213
|
}
|