@tui-sandbox/library 9.3.0 → 9.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tui-sandbox/library",
3
- "version": "9.3.0",
3
+ "version": "9.5.0",
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.795",
12
- "@trpc/server": "11.0.0-rc.795",
11
+ "@trpc/client": "11.0.0-rc.798",
12
+ "@trpc/server": "11.0.0-rc.798",
13
13
  "@xterm/addon-attach": "0.11.0",
14
14
  "@xterm/addon-fit": "0.10.0",
15
15
  "@xterm/xterm": "5.5.0",
@@ -31,7 +31,7 @@
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.13.4",
34
+ "@types/node": "22.13.5",
35
35
  "nodemon": "3.1.9",
36
36
  "vite": "6.1.1",
37
37
  "vitest": "3.0.6"
@@ -65,7 +65,7 @@ export type NeovimContext = {
65
65
 
66
66
  /** Arguments for starting the neovim server. They are built based on your test
67
67
  * environment in a type safe manner. */
68
- type MyStartNeovimServerArguments = OverrideProperties<
68
+ export type MyStartNeovimServerArguments = OverrideProperties<
69
69
  StartNeovimGenericArguments,
70
70
  {
71
71
  filename?: MyTestDirectoryFile | { openInVerticalSplits: MyTestDirectoryFile[] }
@@ -31,7 +31,7 @@ export async function executeBlockingShellCommand(
31
31
  env,
32
32
  })
33
33
  console.log(
34
- `Successfully ran shell blockingCommand (${input.command}) with stdout: ${result.stdout}, stderr: ${result.stderr}`
34
+ `Successfully ran shell blockingCommand (${input.command}) in cwd: '${cwd}' with stdout: ${result.stdout}, stderr: ${result.stderr}`
35
35
  )
36
36
  return {
37
37
  type: "success",