Transferring the dart library to another owner at pub.dartlang.org

Since the pub uses my identity to publish, how do I go about transferring control to someone else, but still allow the publication of releases in the same project? Perhaps this is trivial; I have never tried.

+4
source share
1 answer

You can use pub uploader [options] {add/remove} <email>.

After adding a new add-on, you can delete yourself.

pub uploader add <new-owner-email>
pub uploader remove <old-owner-email>

$ pub uploader -h

Manage uploaders for a package on pub.dartlang.org.

Usage: pub uploader [options] {add/remove} <email>
-h, --help       Print usage information for this command.
    --server     The package server on which the package is hosted.
                 (defaults to "https://pub.dartlang.org")

    --package    The package whose uploaders will be modified.
                 (defaults to the current package)
+4
source

All Articles