commit-insights 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.
|
@@ -1298,7 +1298,7 @@ function buildDashboardData(analysis, commits, repoName, narrative) {
|
|
|
1298
1298
|
reviewers: analysis.reviewers,
|
|
1299
1299
|
recentCommits,
|
|
1300
1300
|
narrative,
|
|
1301
|
-
version: true ? "0.1.
|
|
1301
|
+
version: true ? "0.1.4" : "dev",
|
|
1302
1302
|
generatedAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
1303
1303
|
};
|
|
1304
1304
|
}
|
|
@@ -1812,7 +1812,7 @@ function getRepoName(repoPath) {
|
|
|
1812
1812
|
}
|
|
1813
1813
|
|
|
1814
1814
|
// src/cli.ts
|
|
1815
|
-
var VERSION = true ? "0.1.
|
|
1815
|
+
var VERSION = true ? "0.1.4" : "0.0.0-dev";
|
|
1816
1816
|
function buildProgram() {
|
|
1817
1817
|
const program = new Command("commit-insights");
|
|
1818
1818
|
program.description("Generate a local git contribution dashboard from commit history").version(VERSION);
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "commit-insights",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"license": "MIT",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/hinedy/commit-insights.git"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/hinedy/commit-insights#readme",
|
|
5
10
|
"description": "Generate a local git contribution dashboard from commit history",
|
|
6
11
|
"type": "module",
|
|
7
12
|
"engines": {
|