-
Notifications
You must be signed in to change notification settings - Fork 892
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix minor mistakes in the root README #8242
Conversation
|
@@ -204,7 +207,7 @@ In order to manually test your SDK changes locally, you must use [yarn link](htt | |||
```shell | |||
$ cd packages/firebase | |||
$ yarn link # initialize the linking to the other folder | |||
$ cd ../packages/<my-product> # Example: $ cd packages/database | |||
$ cd ../<my-product> # Example: $ cd ../firestore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have to admit I've never used the yarn link
method of building/linking to an app. I think was correct to begin with, no? The firestore implementation is within packages/firestore
in our repo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The first step brings you into packages/firebase
, then this step says you should cd ../packages/<product>
, which would end up being packages/packages/<product>
. So it's just a small hiccup that I noticed when I was going through the steps myself.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh I see!
Size Report 1Affected ProductsNo changes between base commit (ab883d0) and merge commit (a718cfd).Test Logs |
Size Analysis Report 1Affected ProductsNo changes between base commit (ab883d0) and merge commit (a718cfd).Test Logs |
I noticed some small mistakes in the README.md, this PR fixes them.