mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
The module system moves out of dsh-client-runtime (./loader retired) into its own package: a lazy CJS table where executing a bundle only registers its factory and materialization happens at first require, memoized, with recursive requires self-ordering. ClientModuleSystem is a class; index.ts keeps the types and a thin factory. Boot is two-phase: phase one prefetches the immediately tier in parallel (registration only, failures deferred to phase two's loud import); phase two mounts the vendored Loader with the module system as internal, creates one entry per graph row plus the app-shell pseudo-row the kernel appends itself, and settles on an all-ACTIVE sweep. The shell kernel is self-sufficient: hand-rolled loader-status stores, no plugin value imports, platform seed list single- sourced in platform.ts.
21 lines
1.1 KiB
TypeScript
21 lines
1.1 KiB
TypeScript
/**
|
|
* Web shell library entry. The shell's product is {@link bootWebShell} —
|
|
* apps/web's vite entry calls it against #root; everything else (AppRoot
|
|
* gate, app-shell assembly entry, module-table staticModules, platform constants) is
|
|
* internal to the boot chain. PLATFORM_MODULES is re-exported as the C1
|
|
* single source of truth for the tsdown client externals projection.
|
|
* @module @deepseek-ai/dsh-client-web
|
|
*/
|
|
|
|
export { bootWebShell, type BootSeams } from './boot.tsx'
|
|
export { AppRoot, type AppRootProps } from './AppRoot.tsx'
|
|
export { buildRenderApp, type AssemblyDeps } from './app.tsx'
|
|
export { DocumentTitle, type DocumentTitleProps } from './DocumentTitle.tsx'
|
|
export { APP_SHELL_ID, type AppShellService } from './app-shell.ts'
|
|
export { getStaticModules } from './seed.ts'
|
|
export { PLATFORM_MODULES, type PlatformModule } from './platform.ts'
|
|
export {
|
|
STATE_LABELS, FIBER_STATE, createSignal, createLoaderStatusStore,
|
|
type LoaderStatus, type LoaderEntryState, type KernelSignal, type KernelValueSignal, type LoaderStatusStore,
|
|
} from './loader-status.ts'
|