@rooode/dsh-suite 0.1.3 → 0.1.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.
Files changed (2) hide show
  1. package/bin/cli.js +2 -1
  2. package/package.json +4 -3
package/bin/cli.js CHANGED
@@ -40,7 +40,8 @@ function quoteArg(arg) {
40
40
  }
41
41
 
42
42
  function execDsh(args) {
43
- const fullCommand = ['npx', ...args.map(quoteArg)].join(' ');
43
+ // 增加 -y 避免首次运行时 npx 弹出交互提示阻塞
44
+ const fullCommand = ['npx', '-y', ...args.map(quoteArg)].join(' ');
44
45
  return spawn(fullCommand, {
45
46
  stdio: 'inherit',
46
47
  shell: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rooode/dsh-suite",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "DeepSeek Harness 一键全功能增强套件 (自动化调度 + WebStorm Git 提交对比 + 代码文档多标签预览 + 对话快捷栏)",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -16,7 +16,8 @@
16
16
  "README.md"
17
17
  ],
18
18
  "publishConfig": {
19
- "access": "public"
19
+ "access": "public",
20
+ "registry": "https://registry.npmjs.org"
20
21
  },
21
22
  "scripts": {
22
23
  "build": "node scripts/build.js",
@@ -40,7 +41,7 @@
40
41
  "author": "rooode",
41
42
  "license": "MIT",
42
43
  "dependencies": {
43
- "@rooode/dsh-plugin-automation": "^0.2.1",
44
+ "@rooode/dsh-plugin-automation": "^0.2.2",
44
45
  "@rooode/dsh-plugin-git": "^0.1.2",
45
46
  "@rooode/dsh-plugin-preview": "^0.1.9",
46
47
  "@rooode/dsh-plugin-quickbar": "^0.1.3"