@tui-sandbox/library 6.0.2 → 7.0.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/CHANGELOG.md +18 -0
- package/dist/browser/assets/{index-DJEG76in.js → index-Bup5cvb2.js} +3 -3
- package/dist/browser/index.html +1 -1
- package/dist/src/browser/neovim-client.d.ts +3 -1
- package/dist/src/browser/neovim-client.js +5 -2
- package/dist/src/client/index.d.ts +1 -1
- package/dist/src/client/index.js +1 -1
- package/dist/src/client/terminal-client.d.ts +15 -0
- package/dist/src/client/{neovim-client.js → terminal-client.js} +10 -1
- package/dist/src/server/cypress-support/contents.js +19 -1
- package/dist/src/server/cypress-support/contents.test.js +19 -1
- package/dist/src/server/cypress-support/createCypressSupportFile.js +2 -1
- package/dist/src/server/neovim/NeovimApplication.d.ts +10 -1
- package/dist/src/server/neovim/NeovimApplication.js +15 -12
- package/dist/src/server/neovim/environment/createTempDir.test.js +2 -4
- package/dist/src/server/neovim/index.d.ts +4 -1
- package/dist/src/server/neovim/index.js +34 -0
- package/dist/src/server/server.d.ts +54 -4
- package/dist/src/server/server.js +13 -72
- package/dist/src/server/types.d.ts +7 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/browser/neovim-client.ts +11 -3
- package/src/client/index.ts +1 -1
- package/src/client/{neovim-client.ts → terminal-client.ts} +13 -3
- package/src/server/cypress-support/contents.test.ts +19 -1
- package/src/server/cypress-support/contents.ts +19 -1
- package/src/server/cypress-support/createCypressSupportFile.ts +2 -1
- package/src/server/neovim/NeovimApplication.ts +22 -15
- package/src/server/neovim/environment/createTempDir.test.ts +1 -1
- package/src/server/neovim/index.ts +46 -1
- package/src/server/server.ts +18 -6
- package/src/server/types.ts +12 -0
- package/dist/src/client/neovim-client.d.ts +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [7.0.0](https://github.com/mikavilpas/tui-sandbox/compare/library-v6.1.0...library-v7.0.0) (2024-11-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* it used to be the root of the test-environment, but this does not make much sense. Usually we want to operate within the unique test directory only.
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* the default cwd for shell commands is the test directory ([#150](https://github.com/mikavilpas/tui-sandbox/issues/150)) ([9d8ec59](https://github.com/mikavilpas/tui-sandbox/commit/9d8ec59751bbbb831d188a26f9628b0f01bb65ed))
|
|
13
|
+
|
|
14
|
+
## [6.1.0](https://github.com/mikavilpas/tui-sandbox/compare/library-v6.0.2...library-v6.1.0) (2024-11-19)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* neovim-client can run shell commands ([d5ae2b7](https://github.com/mikavilpas/tui-sandbox/commit/d5ae2b7be654f9e3d9b3c3e4788c292293f46bac))
|
|
20
|
+
|
|
3
21
|
## [6.0.2](https://github.com/mikavilpas/tui-sandbox/compare/library-v6.0.1...library-v6.0.2) (2024-11-18)
|
|
4
22
|
|
|
5
23
|
|