wukong-gitlog-cli 1.0.44 → 1.0.46

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/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.46](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.45...v1.0.46) (2026-04-29)
6
+
7
+ ### [1.0.45](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.44...v1.0.45) (2026-02-28)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * 🐛 serve command add options ([451ff81](https://github.com/tomatobybike/wukong-gitlog-cli/commit/451ff812b0fcb55fb5ed972b8605820e5ee5124d))
13
+
5
14
  ### [1.0.44](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.43...v1.0.44) (2026-02-14)
6
15
 
7
16
  ### [1.0.43](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.42...v1.0.43) (2026-02-13)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wukong-gitlog-cli",
3
- "version": "1.0.44",
3
+ "version": "1.0.46",
4
4
  "description": "Advanced Git commit log exporter with Excel/JSON/TXT output, grouping, stats and CLI.",
5
5
  "keywords": [
6
6
  "git",
@@ -59,7 +59,7 @@
59
59
  "cli:overtime-text-us": "node ./src/index.mjs --overtime --limit 50 --format text --out commits.txt --country US --work-start 10 --work-end 19 --lunch-start 12 --lunch-end 13",
60
60
  "cli:overtime-text-us-outdir": "node ./src/index.mjs --out-dir ../output --overtime --limit 50 --format text --out commits.txt --country US --work-start 10 --work-end 19 --lunch-start 12 --lunch-end 13",
61
61
  "cli:overtime-text-us-parent": "node ./src/index.mjs --out-parent --overtime --limit 50 --format text --out commits.txt --country US --work-start 10 --work-end 19 --lunch-start 12 --lunch-end 13",
62
- "cli:serve": "node ./src/index.mjs serve",
62
+ "cli:serve": "node ./src/index.mjs serve --no-merges --numstat",
63
63
  "cli:text-demo": "node ./src/index.mjs export --format text --limit 5 ",
64
64
  "cli:text-demo-parent": "node ./src/index.mjs export --out-parent --format text --limit 5 ",
65
65
  "format": "prettier --write \"src/**/*.{js,mjs}\"",
@@ -190,7 +190,6 @@ export function addOutputOptions(cmd) {
190
190
  export function addServeOptions(cmd) {
191
191
  return cmd
192
192
  .option('--port <n>', t('options.port'), toInt, 3000)
193
- .option('--numstat', t('options.numstat'))
194
193
  }
195
194
 
196
195
  /**
package/src/index.mjs CHANGED
@@ -167,6 +167,7 @@ const main = async () => {
167
167
  name: 'serve',
168
168
  description: 'Start web server',
169
169
  optionsBuilder: (cmd) => {
170
+ addGitSourceOptions(cmd)
170
171
  addServeOptions(cmd)
171
172
  },
172
173
  handler: serveAction,
package/web/index.html CHANGED
@@ -234,11 +234,11 @@
234
234
 
235
235
  <section class="chartsHalf" id="totalCommitsChangedRankSection">
236
236
  <div class="chart-card">
237
- <h2 data-i18n="totalCommitsChangedAll">开发者 提交Changed 总次数</h2>
237
+ <h2 data-i18n="totalCommitsChangedAll">开发者 提交Changed 总数</h2>
238
238
  <div id="authorTotalCommitsChangedRank" class="rank-list"></div>
239
239
  </div>
240
240
  <div class="chart-card">
241
- <h2 data-i18n="totalCommitsChangedAll">开发者 提交Changed 总次数</h2>
241
+ <h2 data-i18n="totalCommitsChangedAll">开发者 提交Changed 总数</h2>
242
242
  <div
243
243
  id="authorTotalCommitsChangedRankSummary"
244
244
  style="height: 600px"
@@ -19,7 +19,7 @@ export default {
19
19
  totalCommits: "开发者 累计提交次数",
20
20
  totalCommitsCount: "开发者 提交总次数",
21
21
  totalCommitsChanged: "开发者 累计提交Changed",
22
- totalCommitsChangedAll: '开发者 提交Changed 总次数',
22
+ totalCommitsChangedAll: '开发者 提交Changed 总数',
23
23
  commitsList: "提交清单",
24
24
  searchPlaceholder: "搜索作者/信息/Hash/Date",
25
25
  per: '每页显示',