mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
remove the old showRoots config option
This commit is contained in:
parent
19a6e89dc1
commit
1592862ab1
@ -372,12 +372,9 @@ export const transformStoryIndexToStoriesHash = (
|
||||
const v4Index = index.v === 4 ? index : transformStoryIndexV3toV4(index as any);
|
||||
|
||||
const entryValues = Object.values(v4Index.entries);
|
||||
const { sidebar = {}, showRoots: deprecatedShowRoots } = provider.getConfig();
|
||||
const { showRoots = deprecatedShowRoots, collapsedRoots = [], renderLabel } = sidebar;
|
||||
const { sidebar = {} } = provider.getConfig();
|
||||
const { showRoots, collapsedRoots = [], renderLabel } = sidebar;
|
||||
const usesOldHierarchySeparator = entryValues.some(({ title }) => title.match(/\.|\|/)); // dot or pipe
|
||||
if (typeof deprecatedShowRoots !== 'undefined') {
|
||||
warnLegacyShowRoots();
|
||||
}
|
||||
|
||||
const setShowRoots = typeof showRoots !== 'undefined';
|
||||
if (usesOldHierarchySeparator && !setShowRoots && FEATURES?.warnOnLegacyHierarchySeparator) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user