Updating all Meteor packages to latest versions

For the time being it looks like that you have 2 options for packages which have updates you wish to use:

  1. remove and add the package of concern via meteor remove provider:package_name and meteor add provider:package_name
  2. update packages with their specific version manually via meteor add provider:[email protected]

Meteor won't update packages unless you remove and add them #2500


Expanding on previous answers, you can update all packages with this:

grep -ve '^#' .meteor/packages | xargs meteor update

now u can simply do

meteor update --all-packages

Tags:

Meteor