Update commands to match newer Yarn versions

Added arguments in documentation of 'add', 'remove', 'upgrade' and 'why'
Added 'upgrade-interactive'
Removed 'self-update'
This commit is contained in:
Jeroen Akkerman 2017-03-22 11:57:20 +01:00 committed by GitHub
parent b908feebcf
commit 6eafed8688

View File

@ -24,21 +24,21 @@ _yarn ()
_1st_arguments=( _1st_arguments=(
'help:Display help information about yarn' \ 'help:Display help information about yarn' \
'init:Initialize for the development of a package.' \ 'init:Initialize for the development of a package.' \
'add:Add a package to use in your current package.' \ 'add:<package> Add a package to use in your current package.' \
'install:Install all the dependencies listed within package.json in the local node_modules folder.' \ 'install:Install all the dependencies listed within package.json in the local node_modules folder.' \
'publish:Publish a package to a package manager.' \ 'publish:Publish a package to a package manager.' \
'remove:Remove a package that will no longer be used in your current package.' \ 'remove:<package> Remove a package that will no longer be used in your current package.' \
'cache:Clear the local cache. It will be populated again the next time yarn or yarn install is run.' \ 'cache:Clear the local cache. It will be populated again the next time yarn or yarn install is run.' \
'clean:Frees up space by removing unnecessary files and folders from dependencies.' \ 'clean:Frees up space by removing unnecessary files and folders from dependencies.' \
'check:Verifies that versions of the package dependencies in the current projects package.json matches that of yarns lock file.' \ 'check:Verifies that versions of the package dependencies in the current projects package.json matches that of yarns lock file.' \
'ls:List all installed packages.' \ 'list:List all installed packages.' \
'global:Makes binaries available to use on your operating system.' \ 'global:Makes binaries available to use on your operating system.' \
'info:<package> [<field>] - fetch information about a package and return it in a tree format.' \ 'info:<package> [<field>] - fetch information about a package and return it in a tree format.' \
'outdated:Checks for outdated package dependencies.' \ 'outdated:Checks for outdated package dependencies.' \
'run:Runs a defined package script.' \ 'run:Runs a defined package script.' \
'self-update:Updates Yarn to the latest version.' \ 'upgrade:<package> Upgrades packages to their latest version based on the specified range.' \
'upgrade:Upgrades packages to their latest version based on the specified range.' \ 'upgrade-interactive:Opens an interactive GUI to update packages.' \
'why:<query> - Show information about why a package is installed.' 'why:<package> - Show information about why a package is installed.'
) )
_arguments \ _arguments \
'*:: :->subcmds' && return 0 '*:: :->subcmds' && return 0