lazyreview 1.0.72 → 1.0.74
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 -0
- package/dist/cli.js +5447 -2817
- package/package.json +14 -2
package/README.md
CHANGED
|
@@ -20,6 +20,17 @@
|
|
|
20
20
|
|
|
21
21
|
Code review shouldn't require a browser. LazyReview brings the full PR experience into your terminal with vim-style navigation, syntax-highlighted diffs, and a clean panel layout — so you can review without leaving your workflow.
|
|
22
22
|
|
|
23
|
+
## How Is This Different?
|
|
24
|
+
|
|
25
|
+
| Tool | What it does | LazyReview's advantage |
|
|
26
|
+
|------|-------------|----------------------|
|
|
27
|
+
| `gh pr` / `glab` | CLI PR commands | LazyReview is a full TUI with visual diffs, not just CLI commands |
|
|
28
|
+
| lazygit / gitui | Git TUI | These manage git operations; LazyReview manages **code review** -- they're complementary |
|
|
29
|
+
| GitHub/GitLab web | Browser PR review | LazyReview keeps you in the terminal with vim-style navigation |
|
|
30
|
+
| tig | Git log/diff viewer | No PR review, no comments, no multi-provider support |
|
|
31
|
+
|
|
32
|
+
LazyReview is the only TUI that provides a full code review workflow across GitHub, GitLab, Bitbucket, Azure DevOps, and Gitea.
|
|
33
|
+
|
|
23
34
|
## Supported Providers
|
|
24
35
|
|
|
25
36
|
LazyReview works with five git hosting providers. The provider is auto-detected from your git remote, or you can set it in `config.yaml`.
|