Merge pull request #10225 from techieshark/patch-3

Clarify warning message
This commit is contained in:
Norbert de Langen 2020-04-16 13:12:24 +02:00 committed by GitHub
commit 1f27b252a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ const checkForNewPreset = (presetsList: Preset[]) => {
if (!hasNewPreset) {
logger.warn('Storybook support for Create React App is now a separate preset.');
logger.warn(
'To get started with the new preset, simply add `@storybook/preset-create-react-app` to your project.'
'To use the new preset, add `@storybook/preset-create-react-app` to the list of `addons` in your `.storybook/main.js` config file.'
);
logger.warn('The built-in preset will be disabled in Storybook 6.0.');
return false;