@deepseek-ai/dsh-native-command 0.1.0-rc.8 → 0.1.1-rc.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.i18n.yaml CHANGED
@@ -3,4 +3,4 @@
3
3
  # after editing either side, bring the other along and re-record with:
4
4
  # pnpm run verify-translation-pairing --write packages/util/native-command/README.md
5
5
  README.md: 8a552ac36fac150ae18b2a8adaab1dd489ecb476
6
- README.zh.md: 618e50afe7cd157b2dfc4763adfbf1d5d88d213e
6
+ README.zh.md: 7b5ea7fa1985d394b88fd5bcdbce9d9831eef8ee
package/README.zh.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  宿主原生 OS 集成共享的**零依赖免 shell `execFile` 运行器**:一次 `runNativeCommand(command, args, signal)` 调用直接 spawn 可执行文件(绝不拼 shell 字符串),以 utf8 捕获 stdout/stderr,把调用方的 abort 传播为子进程终止,并在 Windows 上隐藏瞬时控制台窗口。失败时,调用会以错误拒绝;该错误附带退出 `code` 与两路已捕获输出,调用方无需重跑即可分类(工具缺失、已取消、真实失败)。
6
6
 
7
- 它的两个消费方都是宿主侧原生集成:[`directory-picker-native`](../../host/directory-picker-native/README.md) 后端的 OS 选择器命令,以及网关将路径交由默认应用打开的操作([`dsh-host-apiproxy`](../../host/apiproxy/README.md) 的 `host.openPath`)。`NativeCommandRunner` 类型是这些调用方的可注入命令边界。
7
+ 它的两个消费方都是宿主侧原生集成:[`directory-picker-native`](../../host/directory-picker-native/README.zh.md) 后端的 OS 选择器命令,以及网关将路径交由默认应用打开的操作([`dsh-host-apiproxy`](../../host/apiproxy/README.zh.md) 的 `host.openPath`)。`NativeCommandRunner` 类型是这些调用方的可注入命令边界。
8
8
 
9
9
  它是**库,不是服务或插件**:没有 `ctx`、不注册任何东西、不持有状态、不发事件。
10
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-native-command",
3
3
  "description": "Zero-dependency no-shell execFile runner for host-native OS integrations: utf8 stdio capture, abort propagation, Windows hide",
4
- "version": "0.1.0-rc.8",
4
+ "version": "0.1.1-rc.1",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -32,11 +32,11 @@
32
32
  ],
33
33
  "license": "MIT",
34
34
  "peerDependencies": {
35
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.8",
35
+ "@deepseek-ai/dsh-invariants": "^0.1.1-rc.1",
36
36
  "@deepseek-ai/cordis": "^4.0.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.8",
39
+ "@deepseek-ai/dsh-invariants": "^0.1.1-rc.1",
40
40
  "@deepseek-ai/cordis": "^4.0.1"
41
41
  }
42
42
  }