function manualPluginSelection()

in src/plugin-release.js [103:112]


function manualPluginSelection () {
    return inquirer.prompt({
        type: 'checkbox',
        name: 'plugins_list',
        message: 'Select the plugins you want to release:',
        choices: plugin_repos.map(function (p) { return p.repoName; }).filter(function (p) { return p !== 'cordova-plugins'; })
    }).then(function (answer) {
        return answer.plugins_list;
    });
}