zen-gitsync 2.10.2 → 2.10.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/README.md CHANGED
@@ -18,6 +18,11 @@ npm install -g zen-gitsync
18
18
  ```shell
19
19
  $ g ui
20
20
  ```
21
+ ![ui](https://home.flowdash.cn/upload/VditorFiles/2026-1/image_zbQZpiL6.png)
22
+ ### 命令编排
23
+
24
+ ![命令编排](https://home.flowdash.cn/upload/VditorFiles/2026-1/zen-gitsync_SBAJdlvm.png)
25
+
21
26
  ### 其他命令:
22
27
  #### 交互式提交:
23
28
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zen-gitsync",
3
- "version": "2.10.2",
3
+ "version": "2.10.4",
4
4
  "description": "一个 git 提交的工具",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/src/config.js CHANGED
@@ -65,10 +65,8 @@ async function safeLoadRaw() {
65
65
 
66
66
  // 异步读取配置文件
67
67
  async function loadConfig() {
68
- console.log('读取配置文件中。。。')
69
68
  const key = getCurrentProjectKey();
70
69
  const raw = await readRawConfigFile();
71
- console.log('读取配置文件成功')
72
70
  // 兼容旧版(全局扁平结构)
73
71
  if (raw && !raw.projects) {
74
72
  return { ...defaultConfig, ...raw };