Skip to content

Commit 9cbb184

Browse files
authored
Fix minor mistakes in the root README (#8242)
1 parent 8fb372a commit 9cbb184

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ To get started using Firebase, see
1818
[![Release Notes](https://img.shields.io/npm/v/firebase.svg?style=flat-square&label=Release%20Notes%20for&labelColor=039be5&color=666)](https://firebase.google.com/support/release-notes/js)
1919

2020
## Upgrade to Version 9
21+
2122
Version 9 has a redesigned API that supports tree-shaking. Read the [Upgrade Guide](https://firebase.google.com/docs/web/modular-upgrade) to learn more.
23+
2224
## Supported Environments
25+
2326
Please see [Environment Support](https://firebase.google.com/support/guides/environments_js-sdk).
2427

2528
## SDK Dev Workflow
@@ -30,7 +33,7 @@ Please see [Environment Support](https://firebase.google.com/support/guides/envi
3033

3134
Before you can start working on the Firebase JS SDK, you need to have Node.js
3235
installed on your machine. As of April 19th, 2024 the team has been testing with Node.js version
33-
`20.12.2`, but the required verison of Node.js may change as we update our dependencies.
36+
`20.12.2`, but the required version of Node.js may change as we update our dependencies.
3437

3538
To download Node.js visit https://nodejs.org/en/download/.
3639

@@ -44,7 +47,7 @@ In addition to Node.js we use `yarn` to facilitate multi package development.
4447
To install `yarn` follow the instructions listed on their website:
4548
https://yarnpkg.com/en/docs/install
4649

47-
This repo currently supports building with yarn `1.x`. For instance, after installating yarn, run
50+
This repo currently supports building with yarn `1.x`. For instance, after installing yarn, run
4851
```bash
4952
$ yarn set version 1.22.11
5053
```
@@ -204,7 +207,7 @@ In order to manually test your SDK changes locally, you must use [yarn link](htt
204207
```shell
205208
$ cd packages/firebase
206209
$ yarn link # initialize the linking to the other folder
207-
$ cd ../packages/<my-product> # Example: $ cd packages/database
210+
$ cd ../<my-product> # Example: $ cd ../firestore
208211
$ yarn link # link your product to make it available elsewhere
209212
$ cd <my-test-app-dir> # cd into your personal project directory
210213
$ yarn link firebase @firebase/<my-product> # tell yarn to use the locally built firebase SDK instead

0 commit comments

Comments
 (0)