Merge branch 'update-meteor-plugin'

Closes #3767 (incorporates some of its changes)
This commit is contained in:
Marc Cornellà 2018-06-15 23:07:06 +02:00
commit e96ca34501

View File

@ -13,36 +13,38 @@ _meteor_installed_packages() {
local -a _1st_arguments local -a _1st_arguments
_1st_arguments=( _1st_arguments=(
"run: [default] Run this project in local development mode." "add-platform:Add a platform to this project."
"debug: Run the project, but suspend the server process for debugging." "add:Add a package to this project."
"create: Create a new project." "admin:Administrative commands."
"update: Upgrade this project's dependencies to their latest versions." "authorized:View or change authorized users and organizations for a site."
"add: Add a package to this project." "build:Build this project for all platforms."
"remove: Remove a package from this project." "claim:Claim a site deployed with an old Meteor version."
"list: List the packages explicitly used by your project." "configure-android:Run the Android configuration tool from Meteor's ADK environment."
"add-platform: Add a platform to this project." "create:Create a new project."
"remove-platform: Remove a platform from this project." "debug:Run the project, but suspend the server process for debugging."
"list-platforms: List the platforms added to your project." "deploy:Deploy this project to Meteor."
"build: Build this project for all platforms." "install-sdk:Installs SDKs for a platform."
"lint: Build this project and run the linters printing all errors and warnings." "lint:Build this project and run the linters printing all errors and warnings."
"shell: Launch a Node REPL for interactively evaluating server-side code." "list-platforms:List the platforms added to your project."
"mongo: Connect to the Mongo database for the specified site." "list-sites:List sites for which you are authorized."
"reset: Reset the project state. Erases the local database." "list:List the packages explicitly used by your project."
"deploy: Deploy this project to Meteor." "login:Log in to your Meteor developer account."
"logs: Show logs for specified site." "logout:Log out of your Meteor developer account."
"authorized: View or change authorized users and organizations for a site." "logs:Show logs for specified site."
"claim: Claim a site deployed with an old Meteor version." "mongo:Connect to the Mongo database for the specified site."
"login: Log in to your Meteor developer account." "publish-for-arch:Builds an already-published package for a new platform."
"logout: Log out of your Meteor developer account." "publish-release:Publish a new meteor release to the package server."
"whoami: Prints the username of your Meteor developer account." "publish:Publish a new version of a package to the package server."
"test-packages: Test one or more packages." "remove-platform:Remove a platform from this project."
"admin: Administrative commands." "remove:Remove a package from this project."
"list-sites: List sites for which you are authorized." "reset:Reset the project state. Erases the local database."
"publish-release: Publish a new meteor release to the package server." "run:[default] Run this project in local development mode."
"publish: Publish a new version of a package to the package server." "search:Search through the package server database."
"publish-for-arch: Builds an already-published package for a new platform." "shell:Launch a Node REPL for interactively evaluating server-side code."
"search: Search through the package server database." "show:Show detailed information about a release or package."
"show: Show detailed information about a release or package." "test-packages:Test one or more packages."
"update:Upgrade this project's dependencies to their latest versions."
"whoami:Prints the username of your Meteor developer account."
) )
local expl local expl
@ -62,4 +64,4 @@ case "$words[2]" in
add) add)
_meteor_all_packages _meteor_all_packages
_wanted packages expl 'all packages' compadd -a packages ;; _wanted packages expl 'all packages' compadd -a packages ;;
esac esac