opencode-zellij 0.0.14 → 0.0.16
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/dist/index.mjs +121 -44
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-zellij",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.16",
|
|
5
5
|
"description": "OpenCode plugin for Zellij-backed panes and workflow integrations.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -27,9 +27,8 @@
|
|
|
27
27
|
"lint:fix": "eslint . --fix",
|
|
28
28
|
"test": "bun test src",
|
|
29
29
|
"test:integration": "bun run build && RUN_ZELLIJ_INTEGRATION=1 bun test tests/integration",
|
|
30
|
-
"test:e2e
|
|
31
|
-
"test:e2e:
|
|
32
|
-
"test:e2e": "bun run test:e2e:run",
|
|
30
|
+
"test:e2e": "bun run build && RUN_ZELLIJ_E2E=1 bun test tests/e2e/*.run.test.ts tests/e2e/*.tui.test.ts",
|
|
31
|
+
"test:e2e:ci-pane": "bun test tests/e2e/ci-pane.test.ts",
|
|
33
32
|
"test:e2e:act": "act -j e2e -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest",
|
|
34
33
|
"publish:preview": "pkg-pr-new publish --bun",
|
|
35
34
|
"prepack": "bun run build"
|