Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I undo updating Meteor?

Tags:

meteor

I think updating Meteor might have broken my app. It was working, then I ran meteor update, and now it is not working. Can I do something like meteor downgrade?

like image 513
Coleman Avatar asked Mar 17 '13 19:03

Coleman


People also ask

How do I update meteor to specific version?

The Meteor Tool will notify you when a newer release is available. You can also update specific packages by passing their names as a command line argument to meteor update , for example: meteor update [packageName packageName2 ...]

How do you update meteor packages?

If you want to update to a newer version of a package after installing it, use meteor update . You can run meteor update without any arguments to update all packages and Meteor itself to their latest versions, or pass a specific package to update just that one, for example meteor update ostrio:flow-router-extra .


1 Answers

Meteor 0.6.0 and above ships with a new distribution system. You can now pass the --release argument to any Meteor command and it will run against the requested release. For example, to bundle your app against Meteor 0.6.1, run: meteor bundle --release 0.6.1. Notably, this only works for post-0.6.0 releases.

If you want to pin your app to a specific release, run: meteor update --release <release>. This modifies the .meteor/release file in your app directory. Then simply run Meteor as usual. You'll still get notified when there's a new release available.

like image 50
avital Avatar answered Sep 29 '22 06:09

avital