@knpkv/codecommit 0.3.0 → 0.4.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/README.md +9 -0
- package/dist/package.json +3 -3
- package/dist/src/tui/ListBuilder.d.ts +3 -3
- package/dist/src/tui/ListBuilder.d.ts.map +1 -1
- package/dist/src/tui/ListBuilder.js +3 -3
- package/dist/src/tui/ListBuilder.js.map +1 -1
- package/dist/src/tui/atoms/actions.d.ts +7 -7
- package/dist/src/tui/atoms/actions.d.ts.map +1 -1
- package/dist/src/tui/atoms/actions.js +25 -31
- package/dist/src/tui/atoms/actions.js.map +1 -1
- package/dist/src/tui/atoms/app.d.ts +8 -9
- package/dist/src/tui/atoms/app.d.ts.map +1 -1
- package/dist/src/tui/atoms/app.js +14 -9
- package/dist/src/tui/atoms/app.js.map +1 -1
- package/dist/src/tui/atoms/runtime.d.ts +2 -2
- package/dist/src/tui/atoms/runtime.d.ts.map +1 -1
- package/dist/src/tui/atoms/runtime.js +13 -12
- package/dist/src/tui/atoms/runtime.js.map +1 -1
- package/dist/src/tui/components/Header.d.ts.map +1 -1
- package/dist/src/tui/components/Header.js +2 -1
- package/dist/src/tui/components/Header.js.map +1 -1
- package/dist/src/tui/components/MainList.d.ts.map +1 -1
- package/dist/src/tui/components/MainList.js.map +1 -1
- package/dist/src/tui/components/NotificationsTable.js +2 -2
- package/dist/src/tui/components/NotificationsTable.js.map +1 -1
- package/dist/src/tui/components/QuickFilters.d.ts.map +1 -1
- package/dist/src/tui/components/QuickFilters.js.map +1 -1
- package/dist/src/tui/hooks/useKeyboardNav.d.ts.map +1 -1
- package/dist/src/tui/hooks/useKeyboardNav.js +4 -4
- package/dist/src/tui/hooks/useKeyboardNav.js.map +1 -1
- package/dist/src/tui/mocks.js +1 -1
- package/dist/src/tui/mocks.js.map +1 -1
- package/dist/src/tui/ui/DialogCommand.js +4 -4
- package/dist/src/tui/ui/DialogCommand.js.map +1 -1
- package/dist/src/tui/ui/DialogCreatePR.d.ts.map +1 -1
- package/dist/src/tui/ui/DialogCreatePR.js +4 -4
- package/dist/src/tui/ui/DialogCreatePR.js.map +1 -1
- package/dist/test/ConfigService.test.js +3 -3
- package/dist/test/ConfigService.test.js.map +1 -1
- package/dist/test/ListBuilder.test.js +11 -6
- package/dist/test/ListBuilder.test.js.map +1 -1
- package/dist/test/MainList.test.js +1 -1
- package/dist/test/MainList.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knpkv/codecommit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "TUI for browsing AWS CodeCommit PRs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@effect-atom/atom-react": "latest",
|
|
19
19
|
"@effect/cli": "latest",
|
|
20
|
-
"@effect/platform": "
|
|
21
|
-
"@effect/platform-bun": "
|
|
20
|
+
"@effect/platform": "latest",
|
|
21
|
+
"@effect/platform-bun": "latest",
|
|
22
22
|
"@effect/platform-node": "latest",
|
|
23
23
|
"@opentui/core": "https://pkg.pr.new/anomalyco/opentui/@opentui/core@367a94087821b3b5feedd35bbb57df43b10a286e",
|
|
24
24
|
"@opentui/react": "https://pkg.pr.new/anomalyco/opentui/@opentui/react@367a94087821b3b5feedd35bbb57df43b10a286e",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"open": "^10.1.0",
|
|
27
27
|
"react": "^19.1.0",
|
|
28
28
|
"tslib": "^2.8.1",
|
|
29
|
-
"@knpkv/codecommit-core": "^0.
|
|
30
|
-
"@knpkv/codecommit-web": "^0.
|
|
29
|
+
"@knpkv/codecommit-core": "^0.4.0",
|
|
30
|
+
"@knpkv/codecommit-web": "^0.4.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@effect/vitest": "latest",
|