-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Package dependency #249
Comments
this issue is no more once the latest release (6.5.3) for storybook packages are used. Thanks for all those who made it happen, my storybook builds just fine :) |
Currently hitting this on fresh setup of Storybook using version 6.5.9 with preset version 4.1.2 |
yep hitting this as well, throwing out @storybook/preset-create-react-app fixes the issue. Something in there is not right, yet. |
i used and override in package.json to fix this for storybook 7 alpha release: "devDependecies": {
"@storybook/addon-actions": "^7.0.0-alpha.52",
"@storybook/addon-essentials": "^7.0.0-alpha.52",
"@storybook/addon-interactions": "^7.0.0-alpha.52",
"@storybook/addon-links": "^7.0.0-alpha.52",
"@storybook/node-logger": "^7.0.0-alpha.52",
"@storybook/preset-create-react-app": "^4.1.2", //this is the latest for now with old depencies
"@storybook/react": "7.0.0-alpha.52",
"@storybook/react-webpack5": "^7.0.0-alpha.52",
"@storybook/testing-library": "^0.0.14-next.0",
},
"overrides": {
"@storybook/react": "7.0.0-alpha.52",
"@storybook/preset-create-react-app": {
"@storybook/react": "7.0.0-alpha.52"
}
} |
Describe the bug
I've recently upgraded my project to React v18 and Storybook to v6.5.0-beta.0 and am currently unable to run
npm install @storybook/preset-create-react-app
in the terminal without getting dependency errors (see screenshot below). Hoping this will be a simplepeerDependencies
change, but any help is appreciated!Steps to reproduce the behavior
npx create-react-app
npx sb init
npx sb upgrade --prerelease
node_modules
npm install
Expected behavior
npm install
s without dependency errors.Screenshots and/or logs
Environment
Additional context
N/A
The text was updated successfully, but these errors were encountered: