@tui-sandbox/library 9.0.0 → 9.0.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-_30KjjEK.js → index-DroaKLT0.js} +7 -7
- package/dist/browser/index.html +1 -1
- package/dist/src/server/connection/trpc.d.ts +6 -14
- package/dist/src/server/neovim/environment/createTempDir.test.js +3 -2
- package/dist/src/server/neovim/index.js +6 -1
- package/dist/src/server/server.d.ts +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/src/server/neovim/environment/createTempDir.test.ts +3 -2
- package/src/server/neovim/index.ts +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tui-sandbox/library",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@catppuccin/palette": "1.7.1",
|
|
11
|
-
"@trpc/client": "11.0.0-rc.
|
|
12
|
-
"@trpc/server": "11.0.0-rc.
|
|
11
|
+
"@trpc/client": "11.0.0-rc.718",
|
|
12
|
+
"@trpc/server": "11.0.0-rc.718",
|
|
13
13
|
"@xterm/addon-attach": "0.11.0",
|
|
14
14
|
"@xterm/addon-fit": "0.10.0",
|
|
15
15
|
"@xterm/xterm": "5.5.0",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"node-pty": "1.0.0",
|
|
23
23
|
"prettier": "3.4.2",
|
|
24
24
|
"tsx": "4.19.2",
|
|
25
|
-
"type-fest": "4.
|
|
25
|
+
"type-fest": "4.33.0",
|
|
26
26
|
"winston": "3.17.0",
|
|
27
27
|
"zod": "3.24.1"
|
|
28
28
|
},
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"@types/command-exists": "1.2.3",
|
|
32
32
|
"@types/cors": "2.8.17",
|
|
33
33
|
"@types/express": "5.0.0",
|
|
34
|
-
"@types/node": "22.10.
|
|
34
|
+
"@types/node": "22.10.10",
|
|
35
35
|
"nodemon": "3.1.9",
|
|
36
|
-
"vite": "6.0.
|
|
37
|
-
"vitest": "3.0.
|
|
36
|
+
"vite": "6.0.11",
|
|
37
|
+
"vitest": "3.0.4"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"cypress": "^13 || ^14",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import fs
|
|
1
|
+
import fs from "fs"
|
|
2
2
|
import nodePath from "path"
|
|
3
3
|
import { expect, it } from "vitest"
|
|
4
4
|
import type { TestDirsPath } from "./createTempDir.js"
|
|
@@ -17,7 +17,8 @@ class TempDirectory implements Disposable {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
[Symbol.dispose](): void {
|
|
20
|
-
|
|
20
|
+
// eslint-disable-next-line no-empty-function
|
|
21
|
+
fs.rm(this.path, { recursive: true }, () => {})
|
|
21
22
|
}
|
|
22
23
|
}
|
|
23
24
|
|
|
@@ -40,8 +40,11 @@ export async function installDependencies(testEnvironmentPath: string, config: D
|
|
|
40
40
|
|
|
41
41
|
console.log(`🚀 Running Neovim prepareFilePath ${prepareFilePath}...`)
|
|
42
42
|
|
|
43
|
+
let output = ""
|
|
43
44
|
app.events.on("stdout" satisfies StdoutOrStderrMessage, data => {
|
|
44
|
-
|
|
45
|
+
assert(data)
|
|
46
|
+
assert(typeof data === "string")
|
|
47
|
+
output += data
|
|
45
48
|
})
|
|
46
49
|
await app.startNextAndKillCurrent(
|
|
47
50
|
testDirectory,
|
|
@@ -49,6 +52,8 @@ export async function installDependencies(testEnvironmentPath: string, config: D
|
|
|
49
52
|
{ cols: 80, rows: 24 }
|
|
50
53
|
)
|
|
51
54
|
await app.application.untilExit()
|
|
55
|
+
console.log(`🚀 Neovim installDependencies output:`)
|
|
56
|
+
console.log(output)
|
|
52
57
|
}
|
|
53
58
|
|
|
54
59
|
export async function initializeStdout(
|