daodou-command 1.4.3 → 1.4.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.
@@ -5,7 +5,9 @@
5
5
  "Bash(git add:*)",
6
6
  "Bash(git commit:*)",
7
7
  "Bash(npm whoami:*)",
8
- "Bash(npm publish)"
8
+ "Bash(npm publish)",
9
+ "Bash(git push:*)",
10
+ "Bash(npm view:*)"
9
11
  ],
10
12
  "deny": [],
11
13
  "ask": []
@@ -4,7 +4,9 @@
4
4
  <option name="autoReloadType" value="SELECTIVE" />
5
5
  </component>
6
6
  <component name="ChangeListManager">
7
- <list default="true" id="1537cb23-f918-4011-a0ed-24da46bf53bc" name="更改" comment="" />
7
+ <list default="true" id="1537cb23-f918-4011-a0ed-24da46bf53bc" name="更改" comment="">
8
+ <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
9
+ </list>
8
10
  <option name="SHOW_DIALOG" value="false" />
9
11
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
12
  <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -63,11 +65,22 @@
63
65
  <option name="presentableId" value="Default" />
64
66
  <updated>1758879086844</updated>
65
67
  <workItem from="1758879088110" duration="1336000" />
66
- <workItem from="1763003382850" duration="1926000" />
68
+ <workItem from="1763003382850" duration="3056000" />
67
69
  </task>
68
70
  <servers />
69
71
  </component>
70
72
  <component name="TypeScriptGeneratedFilesManager">
71
73
  <option name="version" value="3" />
72
74
  </component>
75
+ <component name="Vcs.Log.Tabs.Properties">
76
+ <option name="TAB_STATES">
77
+ <map>
78
+ <entry key="MAIN">
79
+ <value>
80
+ <State />
81
+ </value>
82
+ </entry>
83
+ </map>
84
+ </option>
85
+ </component>
73
86
  </project>
package/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@
6
6
  并且此项目遵循 [语义化版本](https://semver.org/lang/zh-CN/)。
7
7
 
8
8
 
9
+ ## [1.4.4] - 2025-11-13
10
+
11
+ ### 修复
12
+ - 修正 Node.js 版本要求为 `>=18.0.0`,与 Puppeteer 24.x 依赖要求保持一致
13
+ - 解决安装时 Node 版本不匹配的报错问题
14
+
9
15
  ## [1.4.3] - 2025-11-13
10
16
 
11
17
  ### 修复
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "daodou-command",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
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": ">=14.0.0"
39
+ "node": ">=18.0.0"
40
40
  }
41
41
  }