据我所知,meteorite 的目的是简化处理您的项目需要哪些版本的插件和流星分支。但我不想跟随流星树枝上的翻腾;我想使用稳定的版本。似乎这应该是可能的。我该怎么做?
问问题
2715 次
2 回答
7
您可以分别指定备用分支和分叉:
{
meteor: {
"branch": "devel",
"git": "https://github.com/meteor/meteor.git"
}
}
根据文档:
流星规范不是必需的。Meteor 的公共 repo 签出到 master 分支是默认的。您可以指定meteor.branch 和meteor.git 分别使用备用分支和分叉。
要使用稳定版本,只需meteor
从 smart.json 文件中完全省略该部分,您将使用最新的稳定版本。
于 2013-01-15T01:26:31.780 回答
7
使用标签选择特定的 Meteor 版本:
"meteor": {
"git": "https://github.com/meteor/meteor.git",
"tag": "release/0.6.3.1"
},
(参见http://oortcloud.github.com/meteorite/中的 --tag )
于 2013-01-16T01:52:33.043 回答