mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 08:31:06 +08:00
Remove logging from hasDocsOrControls
Causes cryptic webpack error in angular-cli example
This commit is contained in:
parent
692ed7ce77
commit
ccc5ffc502
@ -1,15 +1,7 @@
|
||||
import type { StorybookConfigOptions } from '@storybook/core-common';
|
||||
import { once } from '@storybook/node-logger';
|
||||
|
||||
// addons/x is for the monorepo
|
||||
const packageRe = /addon(s\/|-)(docs|controls)/;
|
||||
|
||||
export const hasDocsOrControls = (options: StorybookConfigOptions) => {
|
||||
const found = options.presetsList?.some((preset) => packageRe.test(preset.name));
|
||||
if (!found) {
|
||||
once.verbose(
|
||||
`No docs or controls found in presets: ${options.presetsList?.map((preset) => preset.name)}`
|
||||
);
|
||||
}
|
||||
return found;
|
||||
};
|
||||
export const hasDocsOrControls = (options: StorybookConfigOptions) =>
|
||||
options.presetsList?.some((preset) => packageRe.test(preset.name));
|
||||
|
Loading…
x
Reference in New Issue
Block a user