How to use smart.json to tell a meteorite to use a stable version of a meteor?

As far as I can tell, the meteorite point is to simplify the work with the plugin versions and the meteor project branch that your project needs. But I do not want to monitor the outflow on the meteor branch; I want to use the stable version. It seems to be possible. How to do it?

+7
source share
2 answers

You can specify alternative branches and forks, respectively:

{ meteor: { "branch": "devel", "git": "https://github.com/meteor/meteor.git" } } 

In the documentation:

A meteor specification is not required. By default, the Meteor repeater is publicly checked for the master branch. You can specify meteor.branch and meteor.git to use alternate branches and forks, respectively.

To use the stable version, simply omit the meteor section from the smart.json file as a whole, and you will use the latest stable version.

+7
source

Use the tag to select a specific version of Meteor:

 "meteor": { "git": "https://github.com/meteor/meteor.git", "tag": "release/0.6.3.1" }, 

(See --tag at http://oortcloud.github.com/meteorite/ )

+7
source

All Articles