The data layer no longer depends on the React glue package, and business plugins no longer depend on web-react at all: - The store engine (zustand vanilla + immer + persist + dev freeze), defineStore, and shallowEqual move to @deepseek-ai/dsh-client-runtime, exported from the ./client main entry — no ./store subpath survives on either package (the web-react one is deleted, none is opened on runtime). - Store products are bare snapshot sources: useSelector leaves SnapshotStore/StoreInstance and Session; every hook is composed at the binding site in web-react's renderer (per-source cached uSES binding). The SlotRendererHost sessions face carries bare observables only. - SessionProvider becomes a standard-kit seat: an entry whose children declare a session-scope slot receives the framework component as a prop, retiring the last value import of web-react from plugin packages. UseSession and the session-area types now live in ui-slots. - web-react shrinks to the shell-only React glue (renderer, providers, uSES bridge); zustand/immer belong to runtime alone; the module-table seed and tsdown externals drop the web-react/store seat. - NODE_ENV replacement is defined once in the shared tsdown client preset (browser bundles inline the engine and lost vite's define); the 3-line process.env typecheck shim moves to runtime with the engine. - Stray tsc artifacts (.js/.d.ts/.d.ts.map beside sources under src/) swept repo-wide; they shadow real sources under vitest resolution. Verified: both aggregate typecheck programs at zero; 604 client tests green; repo-wide grep for web-react/store at zero; real-host playwright run 7/7 including persist round-trip. ci: fix test/docs
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
/**
|
|
* Pure-library module-table seed. These are the ONLY entities statically
|
|
* built into the shell bundle besides the loader machinery — every plugin
|
|
* (including the infrastructure four) arrives as a dynamic bundle and
|
|
* resolves its externals against this table through the loader's require.
|
|
* Keys must match the tsdown client preset's external specifiers
|
|
* (packages/client/tsdown.client.ts CLIENT_EXTERNALS ∩ pure libraries).
|
|
*/
|
|
import * as React from 'react'
|
|
import * as ReactJsxRuntime from 'react/jsx-runtime'
|
|
import * as ReactDom from 'react-dom'
|
|
import * as ReactDomClient from 'react-dom/client'
|
|
import * as Cordis from 'cordis'
|
|
import * as UiSlots from '@deepseek-ai/dsh-client-ui-slots'
|
|
import * as WebReact from '@deepseek-ai/dsh-client-web-react'
|
|
import * as UiPrimitives from '@deepseek-ai/dsh-client-ui-primitives'
|
|
|
|
/**
|
|
* Build the seed table handed to the loader machinery at boot.
|
|
* @returns module specifier → export-surface entity.
|
|
*/
|
|
export function seedModules(): Record<string, unknown> {
|
|
return {
|
|
'react': React,
|
|
'react/jsx-runtime': ReactJsxRuntime,
|
|
'react-dom': ReactDom,
|
|
'react-dom/client': ReactDomClient,
|
|
'cordis': Cordis,
|
|
'@deepseek-ai/dsh-client-ui-slots': UiSlots,
|
|
'@deepseek-ai/dsh-client-web-react': WebReact,
|
|
'@deepseek-ai/dsh-client-ui-primitives': UiPrimitives,
|
|
}
|
|
}
|