@deepseek-ai/dsh-host-frontend-static 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/host/frontend-static/README.md
5
- README.md: e80dd44220ec9c29625581a8b833672834523720
6
- README.zh.md: f3014deacca04f88f1750e5912f84d32562e4ba5
5
+ README.md: 9d959a1031f7d4f8e7fec051504ad5773b33e618
6
+ README.zh.md: 85ebaa7729541a61145dfe3b73cdaebfd6e11855
package/README.md CHANGED
@@ -113,3 +113,5 @@ These limits define when a served asset class is not yet covered. They are curre
113
113
  None.
114
114
 
115
115
  </details>
116
+
117
+ **Runtime invariant:** No companion is published. The only owned relation is the single fallback seat, which cannot be probed from the teardown stream — `internal/plugin` fires before the disposing fiber's effects run, so the legitimate owner still holds the seat at notification time and any claim probe would false-positive on every correct disposal (unlike the webserver companion, whose reserved-path probes never collide with a live registration). The seat's register/release symmetry is covered by the package's real-composition HMR-safety test instead.
package/README.zh.md CHANGED
@@ -113,3 +113,5 @@ kind: "package-reference"
113
113
  无。
114
114
 
115
115
  </details>
116
+
117
+ **运行时不变式:** 不发布伴生入口。唯一关系是单个 fallback seat,但 teardown event 在 disposer 前发出,运行时探测会误报;register/release 对称性由真实组合的 HMR 测试覆盖。
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deepseek-ai/dsh-host-frontend-static",
3
3
  "description": "SPA dist server for the Web shell: owns the webserver fallback seat, serving explicit index entries and static assets with traversal rejection and 404 misses",
4
- "version": "0.1.2-alpha.2",
4
+ "version": "0.1.2-alpha.4",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -18,34 +18,27 @@
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/dsh-host-webserver": "^0.1.2-alpha.2",
36
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2",
37
- "@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.2",
30
+ "@deepseek-ai/dsh-host-webserver": "^0.1.2-alpha.4",
31
+ "@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.4",
38
32
  "@deepseek-ai/cordis": "^4.0.2"
39
33
  },
40
34
  "dependencies": {
41
35
  "@deepseek-ai/schemastery": "^3.18.2"
42
36
  },
43
37
  "devDependencies": {
44
- "@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.2",
38
+ "@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.4",
45
39
  "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
46
- "@deepseek-ai/dsh-credentials-local": "^0.1.2-alpha.2",
47
- "@deepseek-ai/dsh-host-webserver": "^0.1.2-alpha.2",
48
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2",
40
+ "@deepseek-ai/dsh-credentials-local": "^0.1.2-alpha.4",
41
+ "@deepseek-ai/dsh-host-webserver": "^0.1.2-alpha.4",
49
42
  "@deepseek-ai/cordis": "^4.0.2"
50
43
  }
51
44
  }
package/lib/invariant.js DELETED
@@ -1,29 +0,0 @@
1
- //#region lib/types/invariant.js
2
- /**
3
- * Package-owned invariant companion for `@deepseek-ai/dsh-host-frontend-static`.
4
- * @module @deepseek-ai/dsh-host-frontend-static/invariant
5
- */
6
- const PACKAGE_NAME = "@deepseek-ai/dsh-host-frontend-static";
7
- /** Cordis companion plugin name. */
8
- const name = "host-frontend-static-invariant";
9
- /** Service required before the companion can register. */
10
- const inject = ["invariants"];
11
- /**
12
- * No runtime invariant: the only owned relation is the single fallback seat,
13
- * which cannot be probed from the teardown stream — `internal/plugin` fires
14
- * before the disposing fiber's effects run, so the legitimate owner still
15
- * holds the seat at notification time and any claim probe would
16
- * false-positive on every correct disposal (unlike the webserver companion,
17
- * whose reserved-path probes never collide with a live registration). The
18
- * seat's register/release symmetry is covered by the package's
19
- * real-composition HMR-safety test instead.
20
- */
21
- const install = () => {};
22
- /**
23
- * Register this package's invariant companion.
24
- * @param ctx - Cordis context carrying the invariant service.
25
- * @returns the installed registration's disposer after setup succeeds.
26
- */
27
- const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
28
- //#endregion
29
- export { apply, inject, name };
@@ -1,16 +0,0 @@
1
- /**
2
- * Package-owned invariant companion for `@deepseek-ai/dsh-host-frontend-static`.
3
- * @module @deepseek-ai/dsh-host-frontend-static/invariant
4
- */
5
- import type { Context } from '@deepseek-ai/cordis';
6
- /** Cordis companion plugin name. */
7
- export declare const name = "host-frontend-static-invariant";
8
- /** Service required before the companion can register. */
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