The Meteor Tool will notify you when a newer release is available.
To update Meteor projects to the latest release, execute the following command inside a Meteor project:
meteor update
In case you want to update your Meteor project to a specific Meteor release, run the following command inside the project:
meteor update --release <release>
If you want to update all non-core packages, run:
meteor update --packages-only
You can also update specific packages by passing their names as a command line argument to meteor update
, for example:
meteor update [packageName packageName2 ...]