Problematic behavior
When running yarn storybook in src/frontend/magnify, an error occurs at the "loading presets" phase.
Expected behavior/code
The storybook should run. Actually it used to run correctly before the migration.
Steps to Reproduce
git clone the project (or make sure not to have old node_modules folders)
cd src/frontend
yarn
cd magnify
yarn storybook
Solution
After a lot of investigation, the problem seems to come from the storybook package. The refactor commit seems to have downgraded storybook subpackages from 6.5.8 to 6.5.7.
Upgrading storybook package by running npx sb upgrade fixes the issue.
Bug Report
Problematic behavior When running
yarn storybook
insrc/frontend/magnify
, an error occurs at the "loading presets" phase.Expected behavior/code The storybook should run. Actually it used to run correctly before the migration.
Steps to Reproduce
git clone
the project (or make sure not to have oldnode_modules
folders)cd src/frontend
yarn
cd magnify
yarn storybook
Solution After a lot of investigation, the problem seems to come from the storybook package. The refactor commit seems to have downgraded storybook subpackages from 6.5.8 to 6.5.7. Upgrading storybook package by running
npx sb upgrade
fixes the issue.