git-truck 0.7.7-2 → 0.7.7-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/build/index.js +2 -1
- package/package.json +1 -1
- package/src/analyzer/hydrate.server.ts +1 -0
package/build/index.js
CHANGED
|
@@ -4201,6 +4201,7 @@ async function diffAndUpdate_mut(data, currCommit, parentHash, repo) {
|
|
|
4201
4201
|
const { author } = currCommit;
|
|
4202
4202
|
const currHash = currCommit.hash;
|
|
4203
4203
|
log.debug(`comparing [${currHash}] -> [${parentHash}]`);
|
|
4204
|
+
log.debug("hvad fanden");
|
|
4204
4205
|
const fileChanges = await gitDiffNumStatAnalyzed(repo, parentHash, currHash, renamedFiles);
|
|
4205
4206
|
log.debug(`num filechanges ${fileChanges.length}`);
|
|
4206
4207
|
for (const fileChange of fileChanges) {
|
|
@@ -5358,7 +5359,7 @@ async function latestVersion(packageName, options) {
|
|
|
5358
5359
|
|
|
5359
5360
|
// package.json
|
|
5360
5361
|
var name = "git-truck";
|
|
5361
|
-
var version = "0.7.7-
|
|
5362
|
+
var version = "0.7.7-3";
|
|
5362
5363
|
var private2 = false;
|
|
5363
5364
|
var description = "Visualizing a Git repository";
|
|
5364
5365
|
var license = "MIT";
|
package/package.json
CHANGED