2

I'm developing a Meteor app on cloud9 (c9.io) which is stuck on Meteor v0.5.9. I'd like to try my app with 0.6.5.1 as I'm having a few unexplained issues.

Q: Is it possible to do a meteor deploy myapp.meteor.com

and specify the version of Meteor.

I'm assuming not, as I guess everything's packaged up and deployed together, including Meteor itself?

Specify what version of Meteor to use locally suggest you can specify meteor versions, so may be I should set that just before deployment?

Thanks in advance.

4

1 回答 1

1

是的。事实上,这与另一个问题的论点相同:

meteor deploy --release <tag of meteor> myapp.meteor.com

标签与https://github.com/meteor/meteor/releases中的标签相同,但没有release/前缀。

但是,在您的情况下,当前版本是 0.6.5.1,所以如果您只是meteor update在您的机器上做了一个,那将是任何部署或捆绑的默认版本。请注意,由于它会进行各种更改,因此很难回到以前的版本。

于 2013-09-25T14:08:49.770 回答