mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:21:07 +08:00
Add svelte vite plugin if not found
This commit is contained in:
parent
b81a5b1261
commit
1b16274e36
@ -1,6 +1,5 @@
|
||||
import path from 'path';
|
||||
import fs from 'fs';
|
||||
import type { StorybookConfig } from '@storybook/builder-vite';
|
||||
import { hasPlugin } from './utils';
|
||||
import { svelteDocgen } from './plugins/svelte-docgen';
|
||||
|
||||
export const addons: StorybookConfig['addons'] = ['@storybook/svelte'];
|
||||
@ -9,19 +8,16 @@ export const core: StorybookConfig['core'] = {
|
||||
builder: '@storybook/builder-vite',
|
||||
};
|
||||
|
||||
export function readPackageJson(): Record<string, any> | false {
|
||||
const packageJsonPath = path.resolve('package.json');
|
||||
if (!fs.existsSync(packageJsonPath)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const jsonContent = fs.readFileSync(packageJsonPath, 'utf8');
|
||||
return JSON.parse(jsonContent);
|
||||
}
|
||||
|
||||
export const viteFinal: StorybookConfig['viteFinal'] = async (config, { presets }) => {
|
||||
const { plugins = [] } = config;
|
||||
|
||||
// Add svelte plugin if not present
|
||||
if (!hasPlugin(plugins, 'vite-plugin-svelte')) {
|
||||
const { svelte } = await import('@sveltejs/vite-plugin-svelte');
|
||||
plugins.push(svelte());
|
||||
}
|
||||
|
||||
// Add docgen plugin
|
||||
plugins.push(svelteDocgen(config));
|
||||
|
||||
return {
|
||||
|
16
code/frameworks/svelte-vite/src/utils.ts
Normal file
16
code/frameworks/svelte-vite/src/utils.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { PluginOption } from 'vite';
|
||||
|
||||
function checkName(plugin: PluginOption, name: string) {
|
||||
return typeof plugin === 'object' && 'name' in plugin && plugin.name === name;
|
||||
}
|
||||
|
||||
export function hasPlugin(plugins: PluginOption[], name: string) {
|
||||
return Boolean(
|
||||
plugins.find((p): boolean => {
|
||||
if (Array.isArray(p)) {
|
||||
return Boolean(hasPlugin(p, name));
|
||||
}
|
||||
return checkName(p, name);
|
||||
})
|
||||
);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user