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
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
+
22
24
## Supported Environments
25
+
23
26
Please see [Environment Support](https://firebase.google.com/support/guides/environments_js-sdk).
24
27
25
28
## SDK Dev Workflow
@@ -30,7 +33,7 @@ Please see [Environment Support](https://firebase.google.com/support/guides/envi
30
33
31
34
Before you can start working on the Firebase JS SDK, you need to have Node.js
32
35
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.
34
37
35
38
To download Node.js visit https://nodejs.org/en/download/.
36
39
@@ -44,7 +47,7 @@ In addition to Node.js we use `yarn` to facilitate multi package development.
44
47
To install `yarn` follow the instructions listed on their website:
45
48
https://yarnpkg.com/en/docs/install
46
49
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
48
51
```bash
49
52
$ yarn set version 1.22.11
50
53
```
@@ -204,7 +207,7 @@ In order to manually test your SDK changes locally, you must use [yarn link](htt
204
207
```shell
205
208
$ cd packages/firebase
206
209
$ 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
208
211
$ yarn link # link your product to make it available elsewhere
209
212
$ cd<my-test-app-dir># cd into your personal project directory
210
213
$ yarn link firebase @firebase/<my-product># tell yarn to use the locally built firebase SDK instead
0 commit comments