0d96676f35
apps/cli/cordis.yml gains settings-local, credentials-local, and the bare
dormant llm-pi-ai row (manifest deps added for the resolver contract);
llm-deepseek drops its !!js apiKey inline for per-request credential
resolution. Both adapters tag apiKeyEnv role('credential-ref') so the
form mounts the credential control. The web e2e scaffold isolates a
harness home per run — an in-process boot must never touch the
developer's real ~/.dsh — and the new models-settings scenario pins the
whole loop through the shipped app: dormant directory as add vocabulary,
schema-driven editor apply landing in settings.yaml, the route
registering live (topology frame), and a write-only key landing in the
temp .env with the configured badge converging. A hermetic test-owned
reference name keeps a developer's real provider keys from flipping the
badge. schema-form joins the platform module table (seed + externals)
so client bundles share one instance.
30 lines
865 B
TypeScript
30 lines
865 B
TypeScript
import { defineConfig } from 'tsdown'
|
|
|
|
/**
|
|
* schema-form is browser-only, but its lib bundle is imported under plain
|
|
* Node through consumer lib chains (same posture as ui-primitives). CSS
|
|
* imports are stubbed to empty modules: the hashed class maps only matter in
|
|
* bundler contexts, which compile src directly and never read lib.
|
|
*/
|
|
export default defineConfig({
|
|
entry: ['lib/types/index.js', 'lib/types/invariant.js'],
|
|
outDir: 'lib',
|
|
format: ['esm'],
|
|
platform: 'neutral',
|
|
target: 'es2024',
|
|
fixedExtension: false,
|
|
dts: false,
|
|
clean: false,
|
|
plugins: [{
|
|
name: 'dsh-css-stub',
|
|
resolveId(source: string) {
|
|
if (!source.endsWith('.css')) return null
|
|
return `\0dsh-css-stub:${source}.mjs`
|
|
},
|
|
load(id: string) {
|
|
if (!id.startsWith('\0dsh-css-stub:')) return null
|
|
return 'export default {};'
|
|
},
|
|
}],
|
|
})
|