git-truck 1.4.2 → 1.4.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
CHANGED
|
@@ -48122,7 +48122,7 @@ var import_perf_hooks = require("perf_hooks"), import_path2 = require("path");
|
|
|
48122
48122
|
// package.json
|
|
48123
48123
|
var package_default = {
|
|
48124
48124
|
name: "git-truck",
|
|
48125
|
-
version: "1.4.
|
|
48125
|
+
version: "1.4.4",
|
|
48126
48126
|
private: !1,
|
|
48127
48127
|
description: "Visualizing a Git repository",
|
|
48128
48128
|
license: "MIT",
|
|
@@ -52456,7 +52456,7 @@ function addAuthorUnionRec(tree, authorUnions) {
|
|
|
52456
52456
|
// src/analyzer/analyze.server.ts
|
|
52457
52457
|
var repoDir = ".";
|
|
52458
52458
|
async function analyzeCommitLight(hash) {
|
|
52459
|
-
let rawContent = await GitCaller.getInstance().catFileCached(hash), match = /tree (?<tree>.*)\s*(?:parent (?<parent>.*)\s*)?(?:parent (?<parent2>.*)\s*)?author (?<authorName>.*?) <(?<authorEmail>.*?)> (?<authorTimeStamp>\d*?) (?<authorTimeZone>.*?)\s*committer (?<committerName>.*?) <(?<committerEmail>.*?)> (?<committerTimeStamp>\d*?) (?<committerTimeZone>.*)\s*(?:gpgsig (?:.|\s)*?-----END PGP SIGNATURE-----)?\s*(?<message>.*)\s*(?<description>(?:.|\s)*)/gm.exec(rawContent), groups = (match == null ? void 0 : match.groups) ?? {}, tree = groups.tree, parent = groups.parent ?? emptyGitCommitHash, parent2 = groups.parent2 ?? null, author = {
|
|
52459
|
+
let rawContent = await GitCaller.getInstance().catFileCached(hash), match = /tree (?<tree>.*)\s*(?:parent (?<parent>.*)\s*)?(?:parent (?<parent2>.*)\s*)?author (?<authorName>.*?) <(?<authorEmail>.*?)> (?<authorTimeStamp>\d*?) (?<authorTimeZone>.*?)\s*committer (?<committerName>.*?) <(?<committerEmail>.*?)> (?<committerTimeStamp>\d*?) (?<committerTimeZone>.*)\s*(?:gpgsig (?:.|\s)*?-----END (?:PGP SIGNATURE|SIGNED MESSAGE)-----)?\s*(?<message>.*)\s*(?<description>(?:.|\s)*)/gm.exec(rawContent), groups = (match == null ? void 0 : match.groups) ?? {}, tree = groups.tree, parent = groups.parent ?? emptyGitCommitHash, parent2 = groups.parent2 ?? null, author = {
|
|
52460
52460
|
name: groups.authorName,
|
|
52461
52461
|
email: groups.authorEmail,
|
|
52462
52462
|
timestamp: Number(groups.authorTimeStamp),
|
|
@@ -58320,7 +58320,7 @@ function Providers({ children, data }) {
|
|
|
58320
58320
|
);
|
|
58321
58321
|
return (0, import_react45.useEffect)(() => {
|
|
58322
58322
|
let canceled = !1;
|
|
58323
|
-
return options &&
|
|
58323
|
+
return options && requestAnimationFrame(() => {
|
|
58324
58324
|
canceled || localStorage.setItem(OPTIONS_LOCAL_STORAGE_KEY, JSON.stringify(options));
|
|
58325
58325
|
}), () => {
|
|
58326
58326
|
canceled = !0;
|
|
@@ -59755,7 +59755,7 @@ function RepositoryEntry({ repo }) {
|
|
|
59755
59755
|
}
|
|
59756
59756
|
|
|
59757
59757
|
// server-assets-manifest:@remix-run/dev/assets-manifest
|
|
59758
|
-
var assets_manifest_default = { version: "
|
|
59758
|
+
var assets_manifest_default = { version: "29df3c43", entry: { module: "/build/entry.client-U6AVWTR4.js", imports: ["/build/_shared/chunk-SHEM3BVB.js", "/build/_shared/chunk-YGKYYHYJ.js"] }, routes: { root: { id: "root", parentId: void 0, path: "", index: void 0, caseSensitive: void 0, module: "/build/root-IHOPT37O.js", imports: ["/build/_shared/chunk-QKCU3QHF.js"], hasAction: !1, hasLoader: !1, hasCatchBoundary: !1, hasErrorBoundary: !0 }, "routes/$repo.$": { id: "routes/$repo.$", parentId: "root", path: ":repo/*", index: void 0, caseSensitive: void 0, module: "/build/routes/$repo.$-UCKEKRLV.js", imports: ["/build/_shared/chunk-3LGEVO53.js"], hasAction: !0, hasLoader: !0, hasCatchBoundary: !1, hasErrorBoundary: !0 }, "routes/_index": { id: "routes/_index", parentId: "root", path: void 0, index: !0, caseSensitive: void 0, module: "/build/routes/_index-6HVWWH3L.js", imports: ["/build/_shared/chunk-3LGEVO53.js"], hasAction: !1, hasLoader: !0, hasCatchBoundary: !1, hasErrorBoundary: !1 } }, cssBundleHref: void 0, hmr: void 0, url: "/build/manifest-29DF3C43.js" };
|
|
59759
59759
|
|
|
59760
59760
|
// server-entry-module:@remix-run/dev/server-build
|
|
59761
59761
|
var assetsBuildDirectory = "public/build", future = { unstable_dev: !0, unstable_postcss: !1, unstable_tailwind: !1, v2_errorBoundary: !0, v2_meta: !0, v2_normalizeFormMethod: !0, v2_routeConvention: !0 }, publicPath = "/build/", entry = { module: entry_server_exports }, routes = {
|
package/cli.js
CHANGED
|
@@ -48988,7 +48988,7 @@ var import_path5 = __toESM(require("path"));
|
|
|
48988
48988
|
// package.json
|
|
48989
48989
|
var package_default = {
|
|
48990
48990
|
name: "git-truck",
|
|
48991
|
-
version: "1.4.
|
|
48991
|
+
version: "1.4.4",
|
|
48992
48992
|
private: false,
|
|
48993
48993
|
description: "Visualizing a Git repository",
|
|
48994
48994
|
license: "MIT",
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
window.__remixManifest={"version":"
|
|
1
|
+
window.__remixManifest={"version":"29df3c43","entry":{"module":"/build/entry.client-U6AVWTR4.js","imports":["/build/_shared/chunk-SHEM3BVB.js","/build/_shared/chunk-YGKYYHYJ.js"]},"routes":{"root":{"id":"root","path":"","module":"/build/root-IHOPT37O.js","imports":["/build/_shared/chunk-QKCU3QHF.js"],"hasAction":false,"hasLoader":false,"hasCatchBoundary":false,"hasErrorBoundary":true},"routes/$repo.$":{"id":"routes/$repo.$","parentId":"root","path":":repo/*","module":"/build/routes/$repo.$-UCKEKRLV.js","imports":["/build/_shared/chunk-3LGEVO53.js"],"hasAction":true,"hasLoader":true,"hasCatchBoundary":false,"hasErrorBoundary":true},"routes/_index":{"id":"routes/_index","parentId":"root","index":true,"module":"/build/routes/_index-6HVWWH3L.js","imports":["/build/_shared/chunk-3LGEVO53.js"],"hasAction":false,"hasLoader":true,"hasCatchBoundary":false,"hasErrorBoundary":false}},"url":"/build/manifest-29DF3C43.js"};
|