mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 09:58:47 -07:00
Merge branch 'update-meteor-plugin'
Closes #3767 (incorporates some of its changes)
This commit is contained in:
commit
e96ca34501
@ -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."
|
|
||||||
"debug: Run the project, but suspend the server process for debugging."
|
|
||||||
"create: Create a new project."
|
|
||||||
"update: Upgrade this project's dependencies to their latest versions."
|
|
||||||
"add: Add a package to this project."
|
|
||||||
"remove: Remove a package from this project."
|
|
||||||
"list: List the packages explicitly used by your project."
|
|
||||||
"add-platform:Add a platform to this project."
|
"add-platform:Add a platform to this project."
|
||||||
"remove-platform: Remove a platform from this project."
|
"add:Add a package to this project."
|
||||||
"list-platforms: List the platforms added to your project."
|
"admin:Administrative commands."
|
||||||
"build: Build this project for all platforms."
|
|
||||||
"lint: Build this project and run the linters printing all errors and warnings."
|
|
||||||
"shell: Launch a Node REPL for interactively evaluating server-side code."
|
|
||||||
"mongo: Connect to the Mongo database for the specified site."
|
|
||||||
"reset: Reset the project state. Erases the local database."
|
|
||||||
"deploy: Deploy this project to Meteor."
|
|
||||||
"logs: Show logs for specified site."
|
|
||||||
"authorized:View or change authorized users and organizations for a site."
|
"authorized:View or change authorized users and organizations for a site."
|
||||||
|
"build:Build this project for all platforms."
|
||||||
"claim:Claim a site deployed with an old Meteor version."
|
"claim:Claim a site deployed with an old Meteor version."
|
||||||
|
"configure-android:Run the Android configuration tool from Meteor's ADK environment."
|
||||||
|
"create:Create a new project."
|
||||||
|
"debug:Run the project, but suspend the server process for debugging."
|
||||||
|
"deploy:Deploy this project to Meteor."
|
||||||
|
"install-sdk:Installs SDKs for a platform."
|
||||||
|
"lint:Build this project and run the linters printing all errors and warnings."
|
||||||
|
"list-platforms:List the platforms added to your project."
|
||||||
|
"list-sites:List sites for which you are authorized."
|
||||||
|
"list:List the packages explicitly used by your project."
|
||||||
"login:Log in to your Meteor developer account."
|
"login:Log in to your Meteor developer account."
|
||||||
"logout:Log out of your Meteor developer account."
|
"logout:Log out of your Meteor developer account."
|
||||||
"whoami: Prints the username of your Meteor developer account."
|
"logs:Show logs for specified site."
|
||||||
"test-packages: Test one or more packages."
|
"mongo:Connect to the Mongo database for the specified site."
|
||||||
"admin: Administrative commands."
|
"publish-for-arch:Builds an already-published package for a new platform."
|
||||||
"list-sites: List sites for which you are authorized."
|
|
||||||
"publish-release:Publish a new meteor release to the package server."
|
"publish-release:Publish a new meteor release to the package server."
|
||||||
"publish:Publish a new version of a package to the package server."
|
"publish:Publish a new version of a package to the package server."
|
||||||
"publish-for-arch: Builds an already-published package for a new platform."
|
"remove-platform:Remove a platform from this project."
|
||||||
|
"remove:Remove a package from this project."
|
||||||
|
"reset:Reset the project state. Erases the local database."
|
||||||
|
"run:[default] Run this project in local development mode."
|
||||||
"search:Search through the package server database."
|
"search:Search through the package server database."
|
||||||
|
"shell:Launch a Node REPL for interactively evaluating server-side code."
|
||||||
"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
|
||||||
|
Loading…
Reference in New Issue
Block a user