kodevu 0.1.3 → 0.1.4
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 +1 -1
- package/package.json +1 -1
- package/src/vcs-client.js +1 -1
package/README.md
CHANGED
|
@@ -92,6 +92,6 @@ Internal defaults:
|
|
|
92
92
|
- For Git targets and local SVN working copies, the reviewer command runs from the repository workspace so it can inspect related files beyond the diff when needed.
|
|
93
93
|
- For remote SVN URLs without a local working copy, the review still relies on the diff and change metadata only.
|
|
94
94
|
- SVN reports keep the `r123.md` naming style.
|
|
95
|
-
- Git reports are written as `git-<
|
|
95
|
+
- Git reports are written as `git-<short-commit-hash>.md`.
|
|
96
96
|
- `data/state.json` stores per-project checkpoints keyed by repository identity; only the v2 multi-project structure is supported.
|
|
97
97
|
- If the reviewer command exits non-zero or times out, the report is still written, but the state is not advanced so the change can be retried later.
|
package/package.json
CHANGED
package/src/vcs-client.js
CHANGED
|
@@ -86,7 +86,7 @@ function createGitBackend() {
|
|
|
86
86
|
return commitHash.slice(0, 12);
|
|
87
87
|
},
|
|
88
88
|
getReportFileName(commitHash) {
|
|
89
|
-
return `git-${commitHash}.md`;
|
|
89
|
+
return `git-${commitHash.slice(0, 12)}.md`;
|
|
90
90
|
},
|
|
91
91
|
async getTargetInfo(config) {
|
|
92
92
|
return await gitClient.getTargetInfo(config);
|