@storybook/cli 0.0.0-pr-26210-sha-0190219a → 0.0.0-pr-26201-sha-690050fb
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/{block-dependencies-versions-5IZRXGKP.mjs → block-dependencies-versions-JFMYF2QU.mjs}
RENAMED
|
@@ -29,7 +29,7 @@ var minimalVersionsMap={"@angular/core":"15.0.0","react-scripts":"5.0.0",next:"1
|
|
|
29
29
|
Please upgrade to the latest version of Next.js.
|
|
30
30
|
`;default:return dedent`
|
|
31
31
|
Support for ${data.packageName} version < ${data.minimumVersion} has been removed.
|
|
32
|
-
Since version 8, Storybook needs minimum version of ${data.minimumVersion}, but you
|
|
32
|
+
Since version 8, Storybook needs a minimum version of ${data.minimumVersion}, but you have version ${data.installedVersion}.
|
|
33
33
|
|
|
34
34
|
Please update this dependency.
|
|
35
35
|
`}}};
|
|
@@ -8,12 +8,12 @@ var blocker={id:"storyStoreV7removal",async check({mainConfig}){let features=mai
|
|
|
8
8
|
Please see the migration guide for more information:
|
|
9
9
|
https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#storystorev6-and-storiesof-is-deprecated
|
|
10
10
|
|
|
11
|
-
In your Storybook configuration
|
|
11
|
+
In your Storybook configuration file you have this code:
|
|
12
12
|
|
|
13
13
|
export default = {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
features: {
|
|
15
|
+
storyStoreV7: false, <--- remove this line
|
|
16
|
+
},
|
|
17
17
|
};
|
|
18
18
|
|
|
19
19
|
You need to remove the storyStoreV7 property.
|