@solaqua/gji 0.7.0 → 0.7.2
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/back.js +1 -1
- package/dist/clean.d.ts +2 -1
- package/dist/clean.js +8 -16
- package/dist/cli.js +7 -6
- package/dist/gji-bundle.mjs +568 -273
- package/dist/go.d.ts +2 -4
- package/dist/go.js +19 -48
- package/dist/history.d.ts +1 -0
- package/dist/history.js +12 -5
- package/dist/hooks.d.ts +3 -3
- package/dist/hooks.js +3 -3
- package/dist/init.d.ts +3 -3
- package/dist/init.js +12 -12
- package/dist/install-prompt.js +22 -21
- package/dist/new.js +72 -10
- package/dist/open.d.ts +2 -2
- package/dist/open.js +22 -18
- package/dist/pr.js +4 -4
- package/dist/remove.d.ts +3 -2
- package/dist/remove.js +8 -13
- package/dist/repo.d.ts +0 -1
- package/dist/repo.js +0 -9
- package/dist/run-hook.d.ts +6 -0
- package/dist/{trigger-hook.js → run-hook.js} +13 -7
- package/dist/shell-completion.js +5 -5
- package/dist/warp.js +24 -53
- package/dist/worktree-info.d.ts +0 -1
- package/dist/worktree-info.js +17 -11
- package/dist/worktree-picker.d.ts +14 -0
- package/dist/worktree-picker.js +228 -0
- package/man/man1/gji-back.1 +1 -1
- package/man/man1/gji-clean.1 +1 -1
- package/man/man1/gji-completion.1 +1 -1
- package/man/man1/gji-config.1 +1 -1
- package/man/man1/gji-go.1 +1 -1
- package/man/man1/gji-history.1 +1 -1
- package/man/man1/gji-init.1 +1 -1
- package/man/man1/gji-ls.1 +1 -1
- package/man/man1/gji-new.1 +1 -1
- package/man/man1/gji-open.1 +1 -1
- package/man/man1/gji-pr.1 +1 -1
- package/man/man1/gji-remove.1 +1 -1
- package/man/man1/gji-root.1 +1 -1
- package/man/man1/gji-run-hook.1 +9 -0
- package/man/man1/gji-status.1 +1 -1
- package/man/man1/gji-sync-files.1 +1 -1
- package/man/man1/gji-sync.1 +1 -1
- package/man/man1/gji-warp.1 +1 -1
- package/man/man1/gji.1 +6 -4
- package/package.json +3 -7
- package/dist/trigger-hook.d.ts +0 -6
- package/man/man1/gji-trigger-hook.1 +0 -9
package/man/man1/gji-remove.1
CHANGED
package/man/man1/gji-root.1
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
.TH GJI\-RUN\-HOOK 1 "June 2026" "gji 0.7.2" "User Commands"
|
|
2
|
+
.SH NAME
|
|
3
|
+
gji\-run\-hook \- run a named hook (after\-create, after\-enter, before\-remove) in the current worktree
|
|
4
|
+
.SH SYNOPSIS
|
|
5
|
+
.B gji run\-hook [options] <hook>
|
|
6
|
+
.SH DESCRIPTION
|
|
7
|
+
run a named hook (after\-create, after\-enter, before\-remove) in the current worktree
|
|
8
|
+
.SH "SEE ALSO"
|
|
9
|
+
.BR gji (1)
|
package/man/man1/gji-status.1
CHANGED
package/man/man1/gji-sync.1
CHANGED
package/man/man1/gji-warp.1
CHANGED
package/man/man1/gji.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH GJI 1 "
|
|
1
|
+
.TH GJI 1 "June 2026" "gji 0.7.2" "User Commands"
|
|
2
2
|
.SH NAME
|
|
3
3
|
gji \- Context switching without the mess.
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -60,8 +60,10 @@ remove a linked worktree and delete its branch when present
|
|
|
60
60
|
.br
|
|
61
61
|
Alias: \fBrm\fR
|
|
62
62
|
.TP
|
|
63
|
-
.B
|
|
64
|
-
run a named hook (
|
|
63
|
+
.B run\-hook [options] <hook>
|
|
64
|
+
run a named hook (after\-create, after\-enter, before\-remove) in the current worktree
|
|
65
|
+
.br
|
|
66
|
+
Alias: \fBtrigger\-hook\fR
|
|
65
67
|
.TP
|
|
66
68
|
.B warp [options] [branch]
|
|
67
69
|
jump to any worktree across all known repos
|
|
@@ -88,6 +90,6 @@ output the version number
|
|
|
88
90
|
.BR gji\-ls (1),
|
|
89
91
|
.BR gji\-clean (1),
|
|
90
92
|
.BR gji\-remove (1),
|
|
91
|
-
.BR gji\-
|
|
93
|
+
.BR gji\-run\-hook (1),
|
|
92
94
|
.BR gji\-warp (1),
|
|
93
95
|
.BR gji\-config (1)
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solaqua/gji",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "Git worktree CLI for fast context switching.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "sjquant",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"packageManager": "pnpm@
|
|
8
|
+
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
|
|
9
9
|
"homepage": "https://github.com/sjquant/gji#readme",
|
|
10
10
|
"bugs": {
|
|
11
11
|
"url": "https://github.com/sjquant/gji/issues"
|
|
@@ -66,12 +66,8 @@
|
|
|
66
66
|
"@j178/prek": "^0.3.13",
|
|
67
67
|
"@types/node": "^24.6.0",
|
|
68
68
|
"esbuild": "^0.27.0",
|
|
69
|
+
"tsx": "^4.22.4",
|
|
69
70
|
"typescript": "^5.9.3",
|
|
70
71
|
"vitest": "^3.2.4"
|
|
71
|
-
},
|
|
72
|
-
"pnpm": {
|
|
73
|
-
"onlyBuiltDependencies": [
|
|
74
|
-
"esbuild"
|
|
75
|
-
]
|
|
76
72
|
}
|
|
77
73
|
}
|
package/dist/trigger-hook.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
.TH GJI\-TRIGGER\-HOOK 1 "May 2026" "gji 0.7.0" "User Commands"
|
|
2
|
-
.SH NAME
|
|
3
|
-
gji\-trigger\-hook \- run a named hook (afterCreate, afterEnter, beforeRemove) in the current worktree
|
|
4
|
-
.SH SYNOPSIS
|
|
5
|
-
.B gji trigger\-hook [options] <hook>
|
|
6
|
-
.SH DESCRIPTION
|
|
7
|
-
run a named hook (afterCreate, afterEnter, beforeRemove) in the current worktree
|
|
8
|
-
.SH "SEE ALSO"
|
|
9
|
-
.BR gji (1)
|