Vue: Disable docs preset if not using docs/controls

This commit is contained in:
Michael Shilman 2022-03-12 21:00:03 +08:00
parent a6ac43ca61
commit 65970379b3
4 changed files with 13 additions and 6 deletions

View File

@ -1 +1 @@
module.exports = require('./dist/cjs/server/framework-preset-vue');
module.exports = require('./dist/cjs/server/preset');

View File

@ -1,6 +1,9 @@
import { findDistEsm, Options, StorybookConfig } from '@storybook/core-common';
import { hasDocsOrControls } from '@storybook/docs-tools';
export function webpackFinal(webpackConfig: any = {}, options: Options) {
if (!hasDocsOrControls(options)) return webpackConfig;
let vueDocgenOptions = {};
options.presetsList?.forEach((preset) => {
@ -27,6 +30,7 @@ export function webpackFinal(webpackConfig: any = {}, options: Options) {
return webpackConfig;
}
export const config: StorybookConfig['config'] = (entry = []) => {
export const config: StorybookConfig['config'] = (entry = [], options) => {
if (!hasDocsOrControls(options)) return entry;
return [...entry, findDistEsm(__dirname, 'client/docs/config')];
};

View File

@ -4,8 +4,5 @@ import { LoadOptions } from '@storybook/core-common';
export default {
packageJson: sync({ cwd: __dirname }).packageJson,
framework: 'vue',
frameworkPresets: [
require.resolve('./framework-preset-vue.js'),
require.resolve('./framework-preset-vue-docs.js'),
],
frameworkPresets: [require.resolve('./preset.js')],
} as LoadOptions;

View File

@ -0,0 +1,6 @@
import type { StorybookConfig } from '@storybook/core-common';
export const addons: StorybookConfig['addons'] = [
require.resolve('./framework-preset-vue'),
require.resolve('./framework-preset-vue-docs'),
];