-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Storybook 6.2 Release π€ #13160
Comments
Hi @shilman, can I help with this? |
@bismarkhenao Absolutely, thanks so much for your interest! I'll be organizing some issues for the 6.2 milestone and will post it here for anybody who's interested in contributing. Also, we have a discord chat where the community hangs out, and joining is the best way of getting involved: https://discord.gg/storybook |
Got it! Thanks!! |
Hi everyone! Seems like there hasn't been much going on in this issue lately. If there are still questions, comments, or bugs, please feel free to continue the discussion. Unfortunately, we don't have time to get to every issue. We are always open to contributions so please send us a pull request if you would like to help. Inactive issues will be closed after 30 days. Thanks! |
IMHO, as long as the manager builder is using webpack 4, the release should not talk about webpack 5 support. Having both webpack 4 and webpack 5 in the node modules is really bad practice which can lead to weird behavior. |
Second @VincentLanglet . Storybook 6.2 is causing error in symfony/stimulus-bridge . |
Take a look at #14044, there is a solution to avoid using two different versions of webpack |
What if not relying on it? How to get rid of the warning? |
Run yarn add -D @storybook/addon-postcss postcss and this to the addons in your main.js {
name: "@storybook/addon-postcss",
options: {
postcssLoaderOptions: {
implementation: require('postcss')
}
}
} |
@fabian-michael yeah, but what if I don't use postcss and don't need this addon? |
@darkowic this is a warning for anybody who does use it. we plan to remove it in 7.0, so we want people to switch over now. since you don't use it and don't want the warning, do you have any suggestions on what we can do about it? |
I prefer to avoid warnings in the console. In this case, I have to add this warning or see a console warning. If right now, I know that I do not use it there is no option to hide this warning without actually installing the not used addon. I can live with the addon and comment to remove later... |
@darkowic I understand not wanting to see warnings, especially when they don't apply to you. I'm just not sure there's a lightweight way to fix it other than what you suggested |
Well, some option to quiet this warning maybe. Not sure how this could be set tbh. In the main config? Anyways, it's a minor issue. |
Webpack stats' errors-only option might suppress the deprecation warning: module.exports = {
//...
stats: 'errors-only',
}; |
Storybook 6.2 will focus on improved compatibility with the JS ecosystem
Schedule
6.2.0-alpha.0
2020-12-016.2.0-beta.0
2021-02-226.2.0-rc.0
2021-03-156.2.0
2021-03-30Contents
π§Ύ Migration instructions
The text was updated successfully, but these errors were encountered: