Reputation: 1824
I have just installed the Firebase CLI and updated to the latest version following the docs.
They say I can list my Firebase projects using the command:
firebase projects:list
But this gives me the error:
Error: projects:list is not a Firebase command
I am authenticated via the CLI and using Firebase CLI v7.0.0 and Node v10.20.1.
How can I list Firebase projects?
Upvotes: 2
Views: 2128
Reputation: 45
For anyone facing the same issue from Firebase 13.29.1
and after, you now have to use the following command:
firebase apps:list
Upvotes: 0
Reputation: 317467
You are using a very old version of the Firebase CLI. The latest version is 8.4.0.
Upvotes: 1