Add warning if find old stories.json

b05020ce5c (r705834795)
This commit is contained in:
Tom Coleman 2021-09-10 18:31:28 +10:00
parent 18ed032164
commit 5c833834b2

View File

@ -11,6 +11,7 @@ import {
STORY_SPECIFIED,
} from '@storybook/core-events';
import deprecate from 'util-deprecate';
import { logger } from '@storybook/client-logger';
import { getEventMetadata } from '../lib/events';
import {
@ -355,6 +356,7 @@ export const init: ModuleFn = ({
// We can only do this if the stories.json is a proper storyIndex
if (storyIndex.v !== 3) {
logger.warn(`Skipping story index with version v${storyIndex.v}, awaiting SET_STORIES.`);
return;
}