-
Notifications
You must be signed in to change notification settings - Fork 178
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
Remove workaround fix for storybook #10696
Comments
Apparently the release is slated for end of April: storybookjs/storybook#16797 |
Yay!! I've been working on #10788 this morning as well. Trying to verify that upgrading locally to the alpha version fixes both of these tickets. Then when the new version is released, we can be certain that both issues will be fixed. Edit: it is broken |
Confirmed that the alpha release will fix this issue. However, it seems that the logs in #10788 aren't fixed by the upgrade. Will keep digging. |
Task Description
This is a follow-up to #6304
In #5792 storybook was upgraded to version 6.4. However, webpack was choking when running storybook because the project is ESM but there is a plugin that, when built, uses
require
because it is compiled to CJS.The issue is further explored in this thread:
To fix this, workaround code was added into
main.cjs
which replaces the file extensions on the plugins that are getting compiled to CJS.Once storybook 6.5 is released and the workaround code is not needed anymore, remove the code.
The text was updated successfully, but these errors were encountered: