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
?
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 ...]
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 .
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With