From 93a8c447c87482b026a98141053a4405890f0b4f Mon Sep 17 00:00:00 2001 From: Adnan Y Date: Fri, 10 Apr 2015 16:12:03 -0700 Subject: [PATCH] meteor plugin updated --- plugins/meteor/_meteor | 48 ++++++++++++++++++++++++++++++------------ 1 file changed, 34 insertions(+), 14 deletions(-) mode change 100644 => 100755 plugins/meteor/_meteor diff --git a/plugins/meteor/_meteor b/plugins/meteor/_meteor old mode 100644 new mode 100755 index cd7fc304..680850b1 --- a/plugins/meteor/_meteor +++ b/plugins/meteor/_meteor @@ -5,27 +5,47 @@ # Original author: Dimitri JORGE (https://github.com/jorge-d) _meteor_all_packages() { - packages=(`meteor list | cut -d" " -f1`) + packages=(`meteor search | cut -d" " -f1`) } _meteor_installed_packages() { - installed_packages=(`meteor list --using`) + if [[ -f .meteor/packages ]]; then + installed_packages=(`cat .meteor/packages | sed '/#.*/d'`) + fi } local -a _1st_arguments _1st_arguments=( - 'run:[Default] Run this project in local development mode' - 'create:Create a new project' - 'update:Upgrade this project to the latest version of Meteor' - 'add:Add a package to this project' - 'remove:Remove a package from this project' - 'list:List available packages' - 'help:Display Meteor help' - 'bundle:Pack this project up into a tarball' - 'mongo:Connect to the Mongo database for the specified site' - 'deploy:Deploy this project to Meteor' - 'logs:Show logs for specified site' + '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.' + 'install-sdk:Installs SDKs for a platform.' + 'remove-platform:Remove a platform from this project.' + 'list-platforms:List the platforms added to your project.' + 'configure-android:Run the Android configuration tool from Meteor’s ADK environment.' + 'build:Build this project for all platforms.' + '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.' - 'test-packages:Test one or more packages' + 'deploy:Deploy this project to Meteor.' + 'logs:Show logs for specified site.' + 'authorized:View or change authorized users and organizations for a site.' + 'claim:Claim a site deployed with an old Meteor version.' + 'login:Log in to your Meteor developer account.' + 'logout:Log out of your Meteor developer account.' + 'whoami:Prints the username of your Meteor developer account.' + 'test-packages:Test one or more packages.' + 'admin:Administrative commands.' + 'list-sites:List sites for which you are authorized.' + 'publish-release:Publish a new meteor release 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.' + 'search:Search through the package server database.' + 'show:Show detailed information about a release or package.' ) local expl