Run the Build Commands Sequentially: Build the frontend common, core, and shell packages in the specified order. Execute the following commands one by one:
yarn run build:common
yarn run build:core
yarn run build:shell
Here’s a brief explanation of what each command does:
yarn run build:common
: This command builds the common package, which likely contains shared components, utilities, or libraries used across other parts of your project.yarn run build:core
: This command builds the core package, which is essential for the main functionality of your project.yarn run build:shell
: This command builds the shell package, which may contain the main application shell or entry point for your project.