feat(editor): Update storybook to 7.5.2 (no-changelog) (#7601)

Github issue / Community forum post (link here to close automatically):
This commit is contained in:
Alex Grozav
2023-11-03 14:14:51 +02:00
committed by GitHub
parent 2aa7f6375a
commit 135f9214f5
4 changed files with 1271 additions and 805 deletions

View File

@@ -1,17 +1,21 @@
import { dirname, join } from 'path';
import type { StorybookConfig } from '@storybook/vue3-vite';
function getAbsolutePath(value: string): string {
return dirname(require.resolve(join(value, 'package.json'))).toString();
}
const config: StorybookConfig = {
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
addons: [
'@storybook/addon-styling',
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-a11y',
'storybook-dark-mode',
getAbsolutePath('@storybook/addon-links'),
getAbsolutePath('@storybook/addon-essentials'),
getAbsolutePath('@storybook/addon-a11y'),
getAbsolutePath('storybook-dark-mode'),
],
staticDirs: ['../public'],
framework: {
name: '@storybook/vue3-vite',
name: getAbsolutePath('@storybook/vue3-vite') as '@storybook/vue3-vite',
options: {},
},
core: {