我如何使用smart.json告诉陨石使用稳定版本的流星?

前端之家收集整理的这篇文章主要介绍了我如何使用smart.json告诉陨石使用稳定版本的流星?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
据我所知,陨石的重点是简化处理项目所需的插件版本和流星分支.但我不想跟随流星的分支;我想使用稳定的版本.似乎这应该是可能的.我该怎么做?

解决方法

你可以分别为 specify alternate branches and forks
{
  meteor: {
    "branch": "devel","git": "https://github.com/meteor/meteor.git"
  }
}

根据文件

The meteor specification is not required. Meteor’s public repo checked out to the master branch is the default. You can specify meteor.branch and meteor.git to use alternate branches and forks respectively.

要使用稳定版本,只需完全省略smart.json文件中的meteor部分,您将使用最新的稳定版本.

原文链接:https://www.f2er.com/js/159554.html

猜你在找的JavaScript相关文章