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 +5 -0
- package/package.json +1 -1
- package/src/config.js +0 -2
- package/src/ui/public/assets/index--7RPYwwD.css +1 -0
- package/src/ui/public/assets/index-BekNrqjW.js +108 -0
- package/src/ui/public/assets/{vendor-BUGaay5Z.css → vendor-BreftYKt.css} +1 -1
- package/src/ui/public/assets/{vendor-C0m4M1mM.js → vendor-D4i1qkqt.js} +1 -1
- package/src/ui/public/index.html +4 -4
- package/src/ui/public/assets/index-CoHGlKy9.css +0 -1
- package/src/ui/public/assets/index-Dux6vkbA.js +0 -108
package/README.md
CHANGED
|
@@ -18,6 +18,11 @@ npm install -g zen-gitsync
|
|
|
18
18
|
```shell
|
|
19
19
|
$ g ui
|
|
20
20
|
```
|
|
21
|
+

|
|
22
|
+
### 命令编排
|
|
23
|
+
|
|
24
|
+

|
|
25
|
+
|
|
21
26
|
### 其他命令:
|
|
22
27
|
#### 交互式提交:
|
|
23
28
|
```bash
|
package/package.json
CHANGED
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 };
|