feat(editor): Upgrade Storybook to 8.0 (no-changelog) (#8867)
This commit is contained in:
committed by
GitHub
parent
948c383999
commit
572af38383
@@ -1,27 +1,4 @@
|
||||
import type { StorybookConfig } from '@storybook/vue3-vite';
|
||||
import { sharedConfig } from '@n8n/storybook/main';
|
||||
|
||||
import { join, dirname } from 'path';
|
||||
|
||||
/**
|
||||
* This function is used to resolve the absolute path of a package.
|
||||
* It is needed in projects that use Yarn PnP or are set up within a monorepo.
|
||||
*/
|
||||
function getAbsolutePath(value: string): any {
|
||||
return dirname(require.resolve(join(value, 'package.json')));
|
||||
}
|
||||
const config: StorybookConfig = {
|
||||
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
|
||||
addons: [
|
||||
getAbsolutePath('@storybook/addon-links'),
|
||||
getAbsolutePath('@storybook/addon-essentials'),
|
||||
getAbsolutePath('@storybook/addon-interactions'),
|
||||
],
|
||||
framework: {
|
||||
name: getAbsolutePath('@storybook/vue3-vite'),
|
||||
options: {},
|
||||
},
|
||||
docs: {
|
||||
autodocs: 'tag',
|
||||
},
|
||||
};
|
||||
const config = { ...sharedConfig };
|
||||
export default config;
|
||||
|
||||
Reference in New Issue
Block a user