mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
25 lines
1.0 KiB
TypeScript
25 lines
1.0 KiB
TypeScript
import { existsSync } from 'fs';
|
|
import { join, resolve } from 'path';
|
|
import slash from 'slash';
|
|
|
|
import { getInterpretedFile } from '../../code/core/src/common';
|
|
import type { ConfigFile } from '../../code/core/src/csf-tools';
|
|
import { readConfig as csfReadConfig } from '../../code/core/src/csf-tools';
|
|
|
|
export async function readConfig({ fileName, cwd }: { fileName: string; cwd: string }) {
|
|
const configDir = join(cwd, '.storybook');
|
|
if (!existsSync(configDir)) {
|
|
throw new Error(
|
|
`Unable to find the Storybook folder in "${configDir}". Are you sure it exists? Or maybe this folder uses a custom Storybook config directory?`
|
|
);
|
|
}
|
|
|
|
const mainConfigPath = getInterpretedFile(resolve(configDir, fileName));
|
|
return csfReadConfig(mainConfigPath);
|
|
}
|
|
|
|
export function addPreviewAnnotations(mainConfig: ConfigFile, paths: string[]) {
|
|
const config = mainConfig.getFieldValue(['previewAnnotations']) as string[];
|
|
mainConfig.setFieldValue(['previewAnnotations'], [...(config || []), ...paths.map(slash)]);
|
|
}
|