wukong-gitlog-cli 1.0.44 → 1.0.45

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,13 @@
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.45](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.44...v1.0.45) (2026-02-28)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 🐛 serve command add options ([451ff81](https://github.com/tomatobybike/wukong-gitlog-cli/commit/451ff812b0fcb55fb5ed972b8605820e5ee5124d))
11
+
5
12
  ### [1.0.44](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.43...v1.0.44) (2026-02-14)
6
13
 
7
14
  ### [1.0.43](https://github.com/tomatobybike/wukong-gitlog-cli/compare/v1.0.42...v1.0.43) (2026-02-13)
File without changes
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.45",
4
4
  "description": "Advanced Git commit log exporter with Excel/JSON/TXT output, grouping, stats and CLI.",
5
5
  "keywords": [
6
6
  "git",
@@ -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,