Using Wingsuit in monorepo alongside Storybook 7 project #225
Unanswered
justintemps
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi, Wingsuit 1.0 propably wont't work with stoybook 7. It only supports webpack 4 and storiesof api. We are currenty working on the v2 version. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a wingsuit project in a monorepo that also includes a Storybook 7 package for the implementation of my design system in React. I'm using pnpm to manage dependencies. So the project looks something like this.
Since upgrading the
react
project to Storybook@7, I'm getting build errors in wingsuit that look like this:This looks to me like a Webpack error, but I don't understand why Wingsuit is trying to use
@storybook/mdx2-csf
, which I think is a dependency of Storybook@7 instead of Storybook@6 which Wingsuit ought to be using. I understand@storybook/mdx2-csf
only supports Webpack 5, but I can't tell where in my dependency graph it's coming from or why Wingsuit is trying to use it to build the Storybook project.Here's what the package.json of my Wingsuit project looks like, would really appreciate any advice on how to work through this. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions