32 lines
985 B
TypeScript
32 lines
985 B
TypeScript
import { clientOnly } from '../tsdown.client.ts'
|
|
|
|
/**
|
|
* ui-primitives is browser-only, but its lib bundle IS imported under plain
|
|
* Node now that the web shell is a lib (dsh-client-web's lib chain reaches
|
|
* this package). CSS imports are therefore stubbed to empty modules instead
|
|
* of externalized — the hashed class maps only matter in bundler contexts
|
|
* (loader module table / vite source paths), which compile src directly and
|
|
* never read lib.
|
|
*/
|
|
export default clientOnly([{
|
|
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 {};'
|
|
},
|
|
}],
|
|
}])
|