daodou-command 1.4.3 → 1.4.5
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/.claude/settings.local.json +3 -1
- package/.idea/workspace.xml +12 -1
- package/CHANGELOG.md +12 -0
- package/package.json +2 -2
package/.idea/workspace.xml
CHANGED
|
@@ -63,11 +63,22 @@
|
|
|
63
63
|
<option name="presentableId" value="Default" />
|
|
64
64
|
<updated>1758879086844</updated>
|
|
65
65
|
<workItem from="1758879088110" duration="1336000" />
|
|
66
|
-
<workItem from="1763003382850" duration="
|
|
66
|
+
<workItem from="1763003382850" duration="3800000" />
|
|
67
67
|
</task>
|
|
68
68
|
<servers />
|
|
69
69
|
</component>
|
|
70
70
|
<component name="TypeScriptGeneratedFilesManager">
|
|
71
71
|
<option name="version" value="3" />
|
|
72
72
|
</component>
|
|
73
|
+
<component name="Vcs.Log.Tabs.Properties">
|
|
74
|
+
<option name="TAB_STATES">
|
|
75
|
+
<map>
|
|
76
|
+
<entry key="MAIN">
|
|
77
|
+
<value>
|
|
78
|
+
<State />
|
|
79
|
+
</value>
|
|
80
|
+
</entry>
|
|
81
|
+
</map>
|
|
82
|
+
</option>
|
|
83
|
+
</component>
|
|
73
84
|
</project>
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@
|
|
|
6
6
|
并且此项目遵循 [语义化版本](https://semver.org/lang/zh-CN/)。
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [1.4.5] - 2025-11-13
|
|
10
|
+
|
|
11
|
+
### 修复
|
|
12
|
+
- 修正 Node.js 版本要求为 `>=20.18.1`,与 cheerio 1.1.2 依赖要求保持一致
|
|
13
|
+
- cheerio 是最严格的依赖,要求 Node >= 20.18.1
|
|
14
|
+
|
|
15
|
+
## [1.4.4] - 2025-11-13
|
|
16
|
+
|
|
17
|
+
### 修复
|
|
18
|
+
- 修正 Node.js 版本要求为 `>=18.0.0`,与 Puppeteer 24.x 依赖要求保持一致
|
|
19
|
+
- 解决安装时 Node 版本不匹配的报错问题
|
|
20
|
+
|
|
9
21
|
## [1.4.3] - 2025-11-13
|
|
10
22
|
|
|
11
23
|
### 修复
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "daodou-command",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "刀豆命令行工具 - 自动化构建和部署",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -36,6 +36,6 @@
|
|
|
36
36
|
"ws": "^8.14.2"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
|
-
"node": ">=
|
|
39
|
+
"node": ">=20.18.1"
|
|
40
40
|
}
|
|
41
41
|
}
|