pi-diff-review 0.1.1 → 0.1.3
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 +5 -1
- package/extensions/review.ts +3 -1389
- package/package.json +2 -1
- package/src/diff-parser.ts +410 -0
- package/src/diff-source.ts +32 -0
- package/src/index.ts +56 -0
- package/src/prompt.ts +49 -0
- package/src/review-component.ts +808 -0
- package/src/types.ts +61 -0
package/README.md
CHANGED
|
@@ -34,5 +34,9 @@ pi install https://github.com/cmpadden/pi-diff-review
|
|
|
34
34
|
- `n/p` to jump hunks
|
|
35
35
|
- `c` to add or edit a comment for the current line or selected range
|
|
36
36
|
- `x` to delete a comment for the current line or selected range
|
|
37
|
-
- `
|
|
37
|
+
- `Enter` to submit comments back to pi
|
|
38
38
|
- `q` to exit
|
|
39
|
+
|
|
40
|
+
## Release
|
|
41
|
+
|
|
42
|
+
See [RELEASE.md](./RELEASE.md).
|