From 58cdf3d7f74e93c1ffbdc710ff9c7d48a18164f0 Mon Sep 17 00:00:00 2001 From: Yichen Jiang Date: Tue, 11 Aug 2026 12:03:30 +0800 Subject: [PATCH] fix(client): adopt the renamed client plugin manifest key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Master moved the browser-half declaration from a top-level `dshClient` to `dsh.client`, and the new package still carried the old key. The Loader row resolved, the host half applied, and the bundle built — the browser simply never mounted the entry, so the session header rendered no task control at all while `ctx.tasks` held a running task. Nothing reported it; the web e2e is what caught it. Also carried the merged tree onto master's current package rules: the release manifest shape (version, repository, workspace-protocol peers, no `private`) and `@deepseek-ai/cordis` in place of the old `cordis` specifier, plus the connection handle the locale plugin's settings scope now reads in tests. --- packages/client/ui-task/package.json | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/packages/client/ui-task/package.json b/packages/client/ui-task/package.json index b5f372cb16..c8354f8f6c 100644 --- a/packages/client/ui-task/package.json +++ b/packages/client/ui-task/package.json @@ -21,14 +21,16 @@ "./src/*": "./src/*", "./package.json": "./package.json" }, - "dshClient": { - "inject": [ - "@deepseek-ai/dsh-client-locale", - "@deepseek-ai/dsh-client-runtime", - "@deepseek-ai/dsh-client-ui-conversation", - "@deepseek-ai/dsh-client-ui-primitives" - ], - "platform": "web" + "dsh": { + "client": { + "inject": [ + "@deepseek-ai/dsh-client-locale", + "@deepseek-ai/dsh-client-runtime", + "@deepseek-ai/dsh-client-ui-conversation", + "@deepseek-ai/dsh-client-ui-primitives" + ], + "platform": "web" + } }, "scripts": { "bundle": "tsdown",