hunkdiff 0.6.0-beta.1 → 0.6.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 +11 -11
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -71,17 +71,17 @@ Open Hunk in another window, then ask your agent to leave comments.
|
|
|
71
71
|
|
|
72
72
|
## Feature comparison
|
|
73
73
|
|
|
74
|
-
| Capability | hunk | difftastic | delta | diff-so-fancy | diff |
|
|
75
|
-
| ---------------------------------- |
|
|
76
|
-
| Review-first interactive UI | ✅
|
|
77
|
-
| Multi-file review stream + sidebar | ✅
|
|
78
|
-
| Inline agent / AI annotations | ✅
|
|
79
|
-
| Responsive auto split/stack layout | ✅
|
|
80
|
-
| Mouse support inside the viewer | ✅
|
|
81
|
-
| Runtime view toggles | ✅
|
|
82
|
-
| Syntax highlighting | ✅
|
|
83
|
-
| Structural diffing | ❌
|
|
84
|
-
| Pager-compatible mode | ✅
|
|
74
|
+
| Capability | [hunk](https://github.com/modem-dev/hunk) | [lumen](https://github.com/jnsahaj/lumen) | [difftastic](https://github.com/Wilfred/difftastic) | [delta](https://github.com/dandavison/delta) | [diff-so-fancy](https://github.com/so-fancy/diff-so-fancy) | [diff](https://www.gnu.org/software/diffutils/) |
|
|
75
|
+
| ---------------------------------- | ----------------------------------------- | ----------------------------------------- | --------------------------------------------------- | -------------------------------------------- | ---------------------------------------------------------- | ----------------------------------------------- |
|
|
76
|
+
| Review-first interactive UI | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |
|
|
77
|
+
| Multi-file review stream + sidebar | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |
|
|
78
|
+
| Inline agent / AI annotations | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
79
|
+
| Responsive auto split/stack layout | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
80
|
+
| Mouse support inside the viewer | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |
|
|
81
|
+
| Runtime view toggles | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |
|
|
82
|
+
| Syntax highlighting | ✅ | ✅ | ✅ | ✅ | ❌ | ❌ |
|
|
83
|
+
| Structural diffing | ❌ | ❌ | ✅ | ❌ | ❌ | ❌ |
|
|
84
|
+
| Pager-compatible mode | ✅ | ❌ | ✅ | ✅ | ✅ | ✅ |
|
|
85
85
|
|
|
86
86
|
Hunk is optimized for reviewing a full changeset interactively.
|
|
87
87
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hunkdiff",
|
|
3
|
-
"version": "0.6.0
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Desktop-inspired terminal diff viewer for understanding agent-authored changesets.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"hunk": "./bin/hunk.cjs"
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"node": ">=18"
|
|
31
31
|
},
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"hunkdiff-darwin-arm64": "0.6.0
|
|
34
|
-
"hunkdiff-darwin-x64": "0.6.0
|
|
35
|
-
"hunkdiff-linux-x64": "0.6.0
|
|
33
|
+
"hunkdiff-darwin-arm64": "0.6.0",
|
|
34
|
+
"hunkdiff-darwin-x64": "0.6.0",
|
|
35
|
+
"hunkdiff-linux-x64": "0.6.0"
|
|
36
36
|
},
|
|
37
37
|
"license": "MIT",
|
|
38
38
|
"publishConfig": {
|