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.
38 lines
2.0 KiB
TypeScript
38 lines
2.0 KiB
TypeScript
import { fileURLToPath } from 'node:url'
|
|
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
const src = (rel: string): string => fileURLToPath(new URL(rel, import.meta.url))
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
// Workspace packages resolve to SOURCE: package.json exports point at lib
|
|
// for Node/type consumers, but the browser bundle must compile src directly
|
|
// so CSS rides vite's pipeline instead of the CSS-externalized lib bundle.
|
|
// Only the shell's normal-package surface is aliased — plugin packages are
|
|
// NEVER bundled here (web2 shell self-sufficiency); they arrive as runtime
|
|
// bundles through the client module system. Order matters — subpath
|
|
// aliases must win over bare-name prefixes.
|
|
alias: [
|
|
// Browserization of the vendored cordis Loader: its only node-only
|
|
// import; the two process probes are mapped by `define` below.
|
|
{ find: /^node:module$/, replacement: src('./src/node-module-stub.ts') },
|
|
{ find: /^@deepseek-ai\/dsh-client-web$/, replacement: src('../../packages/client/web/src/boot.tsx') },
|
|
{ find: /^@deepseek-ai\/dsh-client-web-react$/, replacement: src('../../packages/client/web-react/src/index.ts') },
|
|
{ find: /^@deepseek-ai\/dsh-client-ui-slots$/, replacement: src('../../packages/client/ui-slots/src/index.ts') },
|
|
{ find: /^@deepseek-ai\/dsh-client-ui-primitives$/, replacement: src('../../packages/client/ui-primitives/src/index.ts') },
|
|
{ find: /^@deepseek-ai\/dsh-client-modules$/, replacement: src('../../packages/client/modules/src/index.ts') },
|
|
],
|
|
},
|
|
define: {
|
|
// vendored loader internal.ts: fromInternal() probes the Node major —
|
|
// "0.0.0" takes neither branch, returning undefined (exactly the empty
|
|
// internal slot the shell boot fills with the client module loader).
|
|
'process.versions.node': '"0.0.0"',
|
|
'process.execArgv': '[]',
|
|
// vendored loader index.ts: envData falls to its default branch.
|
|
'process.env.CORDIS_SHARED': 'undefined',
|
|
},
|
|
})
|