据我所知,meteorite的目的是简化您的项目需要哪些版本的插件和meteor分支的处理。但我不想关注meteor的分支;我想使用一个稳定的版本。看起来这应该是可能的。我该怎么做呢?
发布于 2013-01-15 09:26:32
您可以分别使用specify alternate branches and forks:
{
meteor: {
"branch": "devel",
"git": "https://github.com/meteor/meteor.git"
}
}根据文档:
流星规范不是必需的。默认情况下,Meteor的公共repo签出到主分支。您可以指定meteor.branch和meteor.git来分别使用备用分支和分支。
要使用稳定版本,只需在smart.json文件中完全省略meteor部分,就可以使用最新的稳定版本。
发布于 2013-01-16 09:52:33
使用标签选择特定的Meteor版本:
"meteor": {
"git": "https://github.com/meteor/meteor.git",
"tag": "release/0.6.3.1"
},(参见--http://oortcloud.github.com/meteorite/中的标记)
https://stackoverflow.com/questions/14329585
复制相似问题