ediblecode
ediblecode

Reputation: 11971

Specify what version of Meteor to use locally

So I'm just having a look at someone's code and downloaded it to try and run locally. The problem is that they last updated the project in April so they're not using the latest version of meteor but my localhost is trying to do just that.

I read there was a way to specify what version of Meteor would run locally (and subsequently package) but I can't find it again for some reason.

Upvotes: 2

Views: 96

Answers (2)

ediblecode
ediblecode

Reputation: 11971

meteor update --release 0.6.4.1

Upvotes: 1

Hubert OG
Hubert OG

Reputation: 19544

To set the version for the current project only, write the number in .meteor/release text file.

Upvotes: 4

Related Questions