Meteor パッケージは、メンテナーまたは Meteor 開発者組織のメンバーによって公開および更新できます。2つの違いは何ですか?
質問する
75 次
1 に答える
1
Meteor 開発組織のメンバーは、その組織の名前空間で任意のパッケージを公開および更新できます。たとえば、が組織dandv
のメンバーである場合は、およびwebix
を公開できます。組織のメンバーシップは、 http://meteor.comにログインした後、あなたの組織を通じて管理されます。webix:foo
webix:bar
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)
于 2015-09-30T06:39:04.860 に答える