I've created a meteor project and noticed its meteor version was really behind the global meteor installation version:
If I check meteor version outside of a meteor project, it returns an older version:
And this older version matches the meteor version in this project I've just created.
After some googling, I learned there was this directory ~/.meteor
and apparently it contained and older meteor version:
Then, I renamed this dir to meteorBKP
and ran meteor --version
expecting that now the meteor command would point to the npm global package. What happened, though, is that the directory was created again, but this time containing a much newer version.
So, apparently, I have two meteor versions installed in my computer. Is it expected? How can I remove that unwanted installation and use only the npm global package?
If you need further info to help, I'll gladly provide it.
Thanks in advance!