You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found a bug? Please fill out the sections below. 👍
Issue Summary
I encountered an issue related to Yarn workspaces when setting up the development environment for the Review App API project. This issue prevented me from successfully installing project dependencies. However, I was able to resolve it with the help of the community.
Steps to Reproduce
Cloned the Review App API repository.
Attempted to install project dependencies using yarn.
Encountered an error related to Yarn workspaces and the project not being marked as private.
Any other relevant information. For example, why do you consider this a bug and what did you expect to happen instead?
Actual Results
I received an error message indicating that Yarn workspaces could only be enabled in private projects. This prevented me from installing the project's dependencies using yarn.
Expected Results
I expected to be able to install the project's dependencies using yarn without encountering any Yarn workspaces-related errors.
Solution:
To resolve this issue and successfully set up the development environment for the Review App API project, follow these steps:
Ensure Your Project is Marked as Private: Open the package.json file in the root directory of your project and add the "private": true property if it's not already present:
"private": true
The text was updated successfully, but these errors were encountered:
i would like to add this contributing.md if any body is getting any error related to yarn installation so that it can help others who are facing same issue and i would like to create a new section troubleshooting yarn installation my machine was specifiically ubuntu 22(LTS)
Hii @vaibhavpnimkar I also run ubuntu 22(LTS) and in my package.json there is no "private": true but the project started normally in my local machine. May be you can delete the folder, current docker build and clone and build the docker image again.
Found a bug? Please fill out the sections below. 👍
Issue Summary
I encountered an issue related to Yarn workspaces when setting up the development environment for the Review App API project. This issue prevented me from successfully installing project dependencies. However, I was able to resolve it with the help of the community.
Steps to Reproduce
yarn
.Any other relevant information. For example, why do you consider this a bug and what did you expect to happen instead?
Actual Results
I received an error message indicating that Yarn workspaces could only be enabled in private projects. This prevented me from installing the project's dependencies using
yarn
.Expected Results
I expected to be able to install the project's dependencies using
yarn
without encountering any Yarn workspaces-related errors.Solution:
To resolve this issue and successfully set up the development environment for the Review App API project, follow these steps:
Ensure Your Project is Marked as Private: Open the
package.json
file in the root directory of your project and add the"private": true
property if it's not already present:The text was updated successfully, but these errors were encountered: