Reputation: 19592
I'm trying to file an issue in the firebase Github repo: firebase repo.
This is my first time doing this and 2 of the things that are asked to provide are:
Firebase SDK version: _____
Library version: _____
I don't know where to find the Firebase SDK version nor the Library version.
I went to terminal and typed in:
firebase -v
firebase -version
but neither yielded any results.
How do I find these out?
Upvotes: 1
Views: 14904
Reputation: 1330
Searching over your code base with keywords "firebase version",
you will find below files which represent your Firebase version.
Upvotes: 1
Reputation: 317497
If you're working with node, the version of the Firebase Admin SDK you're using is listed in your package.json
file with the name firebase-admin
.
Upvotes: 4