Meteor包可以由maintainers或Meteor Developer组织成员发布和更新。这两者有什么不同?
答案 0 :(得分:1)
Meteor Develop Organization成员可以发布和更新该组织命名空间下的任何包。例如,如果dandv
是webix
组织的成员,则可以发布webix:foo
和webix:bar
。登录Your Organizations后,通过http://meteor.com管理组织成员资格。
使用meteor admin maintainers
命令,维护者可以访问更新现有包:
$meteor help admin maintainers
Usage: meteor admin maintainers <package name> [--list]
meteor admin maintainers <package name> --add <username>
meteor admin maintainers <package name> --remove <username>
Without options (or with --list), list the users and organizations that are
maintainers for a particular package.
With --add, add an authorized maintainer to a package. Use this to give your
collaborators the ability to work with your packages.
With --remove, remove an authorized maintainer from a package. You cannot remove
yourself if you are the last maintainer on a package.
You can only add or remove one maintainer at a time.
Options:
--add add an authorized maintainer
--remove remove an authorized maintainer
--list list authorized maintainers (the default)