Katerina Skroumpelou
Katerina Skroumpelou
@wizardnet972 and anyone else who's facing this issue: Solution: 1. `nx migrate latest` 2. In `nx.json`, in `targetDefaults` you can add ``` "targetDefaults": { ... "build": { "dependsOn": ["^build"] },...
Thank you for this, saved my life!!!! :D
@IanVS it's not working on v`7.0.0-beta.25`. `@storybook/react-vite` does not read the vite config automatically, and I still need to use `viteFinal`. Here is my reproduction repository: [https://github.com/mandarini/imported-libs](https://github.com/mandarini/imported-libs) Please read README,...
Ohhh perfect, thanks!!!! I'll make sure to include this in our generators! Thanks!
@shilman the reason I named it `frameworkPackage` was actually for consistency. [I saw in the code](https://github.com/storybookjs/storybook/blob/next/code/lib/core-common/src/utils/get-storybook-info.ts#L54) that `framework` is the name of the framework without the `@storybook/`. If on Storybook...
@yannbf we can discuss this more, sure. Finding all `main.js` files sounds great. The way i would do it in Nx, for example, I would look for all the projects...
Thank you @yannbf ! I will test this out tomorrow!
THANK YOUUUUUU!!!! :D :D :D
Just tested it, too, and works like a charm!!!! :D
@binaryartifex @unrealsolver The issue is the following: If you import a workspace library (a Nx library) into another Nx project (library or app) that's using `@storybook/react-vite` or some Storybook vite...