We need to move the storybook-react folder and its contents to the apps/ workspace. This change aims to better organize the codebase and align with our workspace structure. Additionally, we need to update the package.json and yarn.config to remove the docs workspace as it is no longer required.
Technical Details
Move the storybook-react folder from its current location to the apps/ workspace.
Update all references to the storybook-react folder path within the project (e.g., imports, scripts).
Adjust the package.json file to reflect the removal of the docs workspace and any related scripts or dependencies.
Update the yarn.config to remove docs as a workspace.
Ensure no dependencies related to docs are left in the project.
Acceptance Criteria
The storybook-react folder and files are successfully moved to the apps/ workspace.
The package.json and yarn.config no longer reference the docs workspace.
The project builds and functions correctly after these changes, with no broken references or missing dependencies.
Run tests to confirm that the app operates without any regressions post-move.
Description
We need to move the
storybook-react
folder and its contents to theapps/
workspace. This change aims to better organize the codebase and align with our workspace structure. Additionally, we need to update thepackage.json
andyarn.config
to remove thedocs
workspace as it is no longer required.Technical Details
storybook-react
folder from its current location to theapps/
workspace.storybook-react
folder path within the project (e.g., imports, scripts).package.json
file to reflect the removal of thedocs
workspace and any related scripts or dependencies.yarn.config
to removedocs
as a workspace.docs
are left in the project.Acceptance Criteria
storybook-react
folder and files are successfully moved to theapps/
workspace.package.json
andyarn.config
no longer reference thedocs
workspace.