@tui-sandbox/library 7.0.0 → 7.1.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 +19 -0
- package/dist/browser/assets/{index-Bup5cvb2.js → index-CEBvAIkI.js} +7 -7
- package/dist/browser/assets/{index-Bf37MeF1.css → index-D6fBrqAi.css} +1 -1
- package/dist/browser/index.html +2 -2
- package/dist/src/browser/neovim-client.d.ts +3 -2
- package/dist/src/browser/neovim-client.js +3 -0
- package/dist/src/client/terminal-client.d.ts +3 -2
- package/dist/src/client/terminal-client.js +7 -0
- package/dist/src/server/cypress-support/contents.js +12 -2
- package/dist/src/server/cypress-support/contents.test.js +11 -1
- package/dist/src/server/neovim/index.d.ts +4 -3
- package/dist/src/server/neovim/index.js +25 -4
- package/dist/src/server/server.d.ts +35 -0
- package/dist/src/server/server.js +6 -1
- package/dist/src/server/types.d.ts +4 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/browser/neovim-client.ts +12 -2
- package/src/client/style.css +6 -0
- package/src/client/terminal-client.ts +15 -2
- package/src/server/cypress-support/contents.test.ts +11 -1
- package/src/server/cypress-support/contents.ts +12 -2
- package/src/server/neovim/index.ts +40 -5
- package/src/server/server.ts +10 -1
- package/src/server/types.ts +7 -0
- package/tsconfig.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [7.1.0](https://github.com/mikavilpas/tui-sandbox/compare/library-v7.0.1...library-v7.1.0) (2024-11-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add `cy.runLuaCode()` for executing lua in the neovim instance ([#159](https://github.com/mikavilpas/tui-sandbox/issues/159)) ([04ac8eb](https://github.com/mikavilpas/tui-sandbox/commit/04ac8ebc0d95628da2ce601e361183b57804cb50))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* remove black margins around the terminal ([ccc4ea3](https://github.com/mikavilpas/tui-sandbox/commit/ccc4ea30a5402e7c296eac9e242ba162b2e17952))
|
|
14
|
+
|
|
15
|
+
## [7.0.1](https://github.com/mikavilpas/tui-sandbox/compare/library-v7.0.0...library-v7.0.1) (2024-11-20)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* abort test execution when shell commands fail by default ([#152](https://github.com/mikavilpas/tui-sandbox/issues/152)) ([cd8f97e](https://github.com/mikavilpas/tui-sandbox/commit/cd8f97ed2872328cc0c201d50400b4e5e81072cc))
|
|
21
|
+
|
|
3
22
|
## [7.0.0](https://github.com/mikavilpas/tui-sandbox/compare/library-v6.1.0...library-v7.0.0) (2024-11-20)
|
|
4
23
|
|
|
5
24
|
|