You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running npx storybook init (without an explicit version identifier), there are multiple outcomes and we won't know exactly what the user wants. Therefore we'll prompt users about the next action using the following logic:
if user does not specify a version on the CLI:
if current version is latest version:
continue with init
elif prompt "storybook init expects a version specifier. run `npx storybook@latest init` (Y/n)":
exec npx storybook@latest init
else:
echo "please run npx storybook@specifier init"
The text was updated successfully, but these errors were encountered:
When running
npx storybook init
(without an explicit version identifier), there are multiple outcomes and we won't know exactly what the user wants. Therefore we'll prompt users about the next action using the following logic:The text was updated successfully, but these errors were encountered: