Helper to use Yarn Workspaces with CRA
npm install rescripts-use-yarn-workspacessh
yarn add -D rescripts-use-yarn-workspaces
``diff
"rescripts": [
+ "rescripts-use-yarn-workspaces"
]
`3. Run your app, external code should be transpiled.
Storybook Plugin.
Additionally, this could export helpers for storybook, to use it, on .storybook/main.js add the following:
`diff
module.exports = {
addons: [
+ 'rescripts-use-yarn-workspaces/storybook'
]
}
``