@deepseek-ai/dsh-native-command 0.1.2-alpha.2 → 0.1.2-alpha.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.
package/README.i18n.yaml CHANGED
@@ -2,5 +2,5 @@
2
2
  # side as of the last confirmed-consistent state. Both languages carry equal authority;
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
- README.md: 282cefcc00d296b3c09741e64c88647343e1bef2
6
- README.zh.md: aecb60d2e8f68a6e9468e3f2d4b0e2d99bebefc6
5
+ README.md: 06baa6d631198e42c6de3e20c8a0bd562564b779
6
+ README.zh.md: 6df6ee25e32e5f7290af1c4af580fe108a0d3b9f
package/README.md CHANGED
@@ -64,7 +64,7 @@ The command runner is a thin wrapper over Node's `execFile`. The path opener sel
64
64
  | [`src/index.ts`](src/index.ts) | Public command-runner and path-opener exports |
65
65
  | [`src/runner.ts`](src/runner.ts) | Shell-free `execFile` adapter |
66
66
  | [`src/path-opener.ts`](src/path-opener.ts) | Desktop detection, open intents, browser preference, and WSL translation |
67
- | [`src/invariant.ts`](src/invariant.ts) | Invariant companion (no runtime invariant; each run is one stateless child-process round trip) |
67
+ | | No runtime invariant companion is published; each run is one stateless child-process round trip with no owned event stream or mutable runtime data; behavior is enforced by unit tests. |
68
68
 
69
69
  ### What execFile gives the runner
70
70
 
package/README.zh.md CHANGED
@@ -64,7 +64,7 @@ const { stdout, stderr } = await runNativeCommand('osascript', ['-e', script], s
64
64
  | [`src/index.ts`](src/index.ts) | 命令运行器与路径打开器的公共导出 |
65
65
  | [`src/runner.ts`](src/runner.ts) | 无 shell 的 `execFile` 适配器 |
66
66
  | [`src/path-opener.ts`](src/path-opener.ts) | 桌面探测、打开意图、浏览器偏好与 WSL 转换 |
67
- | [`src/invariant.ts`](src/invariant.ts) | 不变式伴生插件(无运行时不变式;每次运行都是一次无状态的子进程往返) |
67
+ | | 不发布运行时不变式伴生入口;每次运行都是一次无状态的子进程往返。 |
68
68
 
69
69
  ### execFile 给了运行器什么
70
70
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-native-command",
3
3
  "description": "Host-native command and path-opening utilities with shell-free execution, cancellation, desktop detection, and WSL handoff",
4
- "version": "0.1.2-alpha.2",
4
+ "version": "0.1.2-alpha.4",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -18,25 +18,18 @@
18
18
  "types": "./lib/types/index.d.ts",
19
19
  "default": "./lib/index.js"
20
20
  },
21
- "./invariant": {
22
- "types": "./lib/types/invariant.d.ts",
23
- "default": "./lib/invariant.js"
24
- },
25
21
  "./src/*": "./src/*",
26
22
  "./package.json": "./package.json"
27
23
  },
28
24
  "files": [
29
25
  "lib/index.js",
30
- "lib/invariant.js",
31
26
  "lib/types/**/*.d.ts"
32
27
  ],
33
28
  "license": "MIT",
34
29
  "peerDependencies": {
35
- "@deepseek-ai/cordis": "^4.0.2",
36
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2"
30
+ "@deepseek-ai/cordis": "^4.0.2"
37
31
  },
38
32
  "devDependencies": {
39
- "@deepseek-ai/cordis": "^4.0.2",
40
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2"
33
+ "@deepseek-ai/cordis": "^4.0.2"
41
34
  }
42
35
  }
package/lib/invariant.js DELETED
@@ -1,24 +0,0 @@
1
- //#region lib/types/invariant.js
2
- /**
3
- * Package-owned invariant companion for `@deepseek-ai/dsh-native-command`.
4
- * @module @deepseek-ai/dsh-native-command/invariant
5
- */
6
- const PACKAGE_NAME = "@deepseek-ai/dsh-native-command";
7
- /** Cordis companion plugin name. */
8
- const name = "native-command-invariant";
9
- /** Service required before the companion can reserve package ownership. */
10
- const inject = ["invariants"];
11
- /**
12
- * No runtime invariant: each run is one stateless child-process round trip
13
- * with no owned event stream or mutable runtime data; behavior is enforced by
14
- * unit tests.
15
- */
16
- const install = () => {};
17
- /**
18
- * Register this package's invariant companion.
19
- * @param ctx - Cordis context carrying the invariant service.
20
- * @returns the installed registration's disposer after setup succeeds.
21
- */
22
- const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
23
- //#endregion
24
- export { apply, inject, name };
@@ -1,16 +0,0 @@
1
- /**
2
- * Package-owned invariant companion for `@deepseek-ai/dsh-native-command`.
3
- * @module @deepseek-ai/dsh-native-command/invariant
4
- */
5
- import type { Context } from '@deepseek-ai/cordis';
6
- /** Cordis companion plugin name. */
7
- export declare const name = "native-command-invariant";
8
- /** Service required before the companion can reserve package ownership. */
9
- export declare const inject: string[];
10
- /**
11
- * Register this package's invariant companion.
12
- * @param ctx - Cordis context carrying the invariant service.
13
- * @returns the installed registration's disposer after setup succeeds.
14
- */
15
- export declare const apply: (ctx: Context) => Promise<() => void>;
16
- //# sourceMappingURL=invariant.d.ts.map