feat(skin): add audio skins for HTML and React presets (#772)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sam Potts
2026-03-09 12:12:49 +11:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 038ad8b4f5
commit d751fdabea
125 changed files with 4174 additions and 2264 deletions
+45
View File
@@ -0,0 +1,45 @@
import { readFileSync } from 'node:fs';
import { dirname, relative, resolve } from 'node:path';
import { resolveImports } from './resolve-css-imports.mjs';
const INLINE_PREFIX = 'inline-css:';
const INLINE_SUFFIX = '?inline';
/**
* Rolldown/tsdown plugin that inlines `.css?inline` imports as JavaScript
* modules exporting the resolved CSS string. Mirrors the Vite `?inline`
* convention so the same source works in both Vite dev and tsdown builds.
*
* @param {{ skinsDir: string; rootDir?: string }} options
*/
export function inlineCssPlugin(options) {
const { skinsDir, rootDir = process.cwd() } = options;
return {
name: 'inline-css',
resolveId(source, importer) {
if (!source.endsWith(INLINE_SUFFIX)) return null;
const cssPath = source.slice(0, -INLINE_SUFFIX.length);
const abs = resolve(dirname(importer), cssPath);
const rel = relative(rootDir, abs);
// Use .js extension so rolldown doesn't apply its CSS loader.
return { id: `${INLINE_PREFIX}${rel.replace(/\.css$/, '.js')}`, moduleSideEffects: false };
},
load(id) {
if (!id.startsWith(INLINE_PREFIX)) return null;
// Map back to the .css file path.
const rel = id.slice(INLINE_PREFIX.length).replace(/\.js$/, '.css');
const file = resolve(rootDir, rel);
const raw = readFileSync(file, 'utf-8');
const resolved = resolveImports(raw, dirname(file), skinsDir);
return { code: `export default ${JSON.stringify(resolved)};`, moduleSideEffects: false };
},
};
}