| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * CSS Modules enter client bundles through virtual modules, so the loader must
- * explicitly register the underlying stylesheet as a watch dependency.
- */
- import { mkdtemp, rm, writeFile } from 'node:fs/promises'
- import { tmpdir } from 'node:os'
- import { join } from 'node:path'
- import { describe, expect, it } from 'vitest'
- import { clientBundle } from '../packages/client/tsdown.client.ts'
- interface CssPlugin {
- name: string
- resolveId?: (source: string, importer?: string) => string | null
- load?: (this: { addWatchFile(id: string): void }, id: string) => Promise<string | null>
- }
- function cssPlugin(): CssPlugin {
- const configs = clientBundle(
- '@deepseek-ai/dsh-client-test',
- ['lib/types/index.js', 'lib/types/invariant.js'],
- )({ env: { DSH_BUILD_FACE: 'client' } })
- const client = configs.find(config => config.platform === 'browser')
- if (client === undefined) throw new Error('client config missing')
- const plugins = (client as { plugins: CssPlugin[] }).plugins
- const plugin = plugins.find(candidate => candidate.name === 'dsh-css-modules-inline')
- if (plugin === undefined) throw new Error('CSS Modules plugin missing from client config')
- return plugin
- }
- describe('client bundle CSS Modules', () => {
- it('registers the source stylesheet as a watch dependency', async () => {
- const root = await mkdtemp(join(tmpdir(), 'dsh-client-css-watch-'))
- try {
- const stylesheet = join(root, 'Fixture.module.css')
- const importer = join(root, 'index.ts')
- await writeFile(stylesheet, '.root { color: red; }\n')
- const plugin = cssPlugin()
- const virtualId = plugin.resolveId?.('./Fixture.module.css', importer)
- if (typeof virtualId !== 'string' || plugin.load === undefined) {
- throw new Error('CSS Modules plugin hooks are incomplete')
- }
- const watched: string[] = []
- const output = await plugin.load.call({ addWatchFile: id => watched.push(id) }, virtualId)
- expect(watched).toEqual([stylesheet])
- expect(output).toContain('data-plugin-css')
- } finally {
- await rm(root, { recursive: true, force: true })
- }
- })
- })
|