From 230752aaa2e98ff42afd607fc2d57bc74b53403b Mon Sep 17 00:00:00 2001 From: Chinesezjc Date: Thu, 6 Aug 2026 12:48:55 +0800 Subject: [PATCH] test(web): keep the assembled boot entry list module-private knip rejects it as an unused export: both snapshot files reach the graph through mountAssembledApp, never through the entry list itself. --- apps/web/tests/assembled-boot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/tests/assembled-boot.ts b/apps/web/tests/assembled-boot.ts index c2c9f49e08..0c213c4444 100644 --- a/apps/web/tests/assembled-boot.ts +++ b/apps/web/tests/assembled-boot.ts @@ -15,7 +15,7 @@ import type { WebBootEntry } from '@deepseek-ai/dsh-client-modules/client' import { AppWebEntry } from '@deepseek-ai/dsh-client-web' /** Boot entries for the minimal assembled graph, each carrying the workspace directory its bundle is read from. */ -export const PLUGINS: readonly (WebBootEntry & { dir: string })[] = [ +const PLUGINS: readonly (WebBootEntry & { dir: string })[] = [ { id: '@deepseek-ai/dsh-client-connection', dir: 'connection', url: '/plugins/connection.js', rev: 'fx', inject: [], immediately: true }, { id: '@deepseek-ai/dsh-client-runtime', dir: 'runtime', url: '/plugins/runtime.js', rev: 'fx', inject: ['@deepseek-ai/dsh-client-connection'], immediately: true }, { id: '@deepseek-ai/dsh-client-ui-theme', dir: 'ui-theme', url: '/plugins/ui-theme.js', rev: 'fx', inject: [], immediately: true },