@duoyun/md-img-pull 1.2.0 → 1.2.1

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
@@ -87,11 +87,15 @@ node dist/main.cjs
87
87
 
88
88
  ## 更新日志
89
89
 
90
+ ### v1.2.1
91
+
92
+ - **修复**:优化进度显示稳定性,减少刷新频率,解决抖动问题
93
+ - **优化**:缩短进度条和文件名显示,避免终端换行导致的显示异常
94
+
90
95
  ### v1.2.0
91
96
 
92
97
  - **新功能**:分区输出 - 自动将输出按约 50MB 分割为多个 `part_X` 文件夹,方便管理和传输
93
- - **优化**:全新的单行进度显示,不再闪烁抖动
94
- - **优化**:实时显示分区大小、下载/压缩状态、累计时间
98
+ - **优化**:全新的单行进度显示,实时显示分区大小、下载/压缩状态、累计时间
95
99
  - **优化**:精简日志输出,移除冗余信息
96
100
 
97
101
  ### v1.1.0
package/dist/main.cjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duoyun/md-img-pull",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Markdown 媒体资源本地化与压缩工具",
5
5
  "main": "./dist/main.cjs",
6
6
  "repository": {
@@ -19,15 +19,9 @@
19
19
  "files": [
20
20
  "dist"
21
21
  ],
22
- "scripts": {
23
- "start": "tsx main.ts",
24
- "build": "esbuild main.ts --bundle --platform=node --format=cjs --outfile=dist/main.cjs --external:sharp --banner:js=\"#!/usr/bin/env node\"",
25
- "test": "echo \"Error: no test specified\" && exit 1"
26
- },
27
22
  "keywords": [],
28
23
  "author": "",
29
24
  "license": "ISC",
30
- "packageManager": "pnpm@10.28.0",
31
25
  "devDependencies": {
32
26
  "@types/fs-extra": "^11.0.4",
33
27
  "@types/node": "^25.2.1",
@@ -49,5 +43,10 @@
49
43
  "sharp": "^0.34.5",
50
44
  "unified": "^11.0.5",
51
45
  "unist-util-visit": "^5.1.0"
46
+ },
47
+ "scripts": {
48
+ "start": "tsx main.ts",
49
+ "build": "esbuild main.ts --bundle --platform=node --format=cjs --outfile=dist/main.cjs --external:sharp --banner:js=\"#!/usr/bin/env node\"",
50
+ "test": "echo \"Error: no test specified\" && exit 1"
52
51
  }
53
- }
52
+ }