Meteor Developer组织成员和软件包维护者之间有什么区别?

时间:2015-09-30 06:39:05

标签: meteor atmosphere.js meteor-packages

Meteor包可以由maintainers或Meteor Developer组织成员发布和更新。这两者有什么不同?

1 个答案:

答案 0 :(得分:1)

Meteor Develop Organization成员可以发布和更新该组织命名空间下的任何包。例如,如果dandvwebix组织的成员,则可以发布webix:foowebix: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)