2020-03-01 16:22:10 +00:00
source $__fish_data_dir /functions /__fish_npm_helper.fish
2019-01-11 05:10:21 +00:00
set -l yarn_add "yarn global add"
2018-03-05 14:28:19 +00:00
2018-10-19 22:45:02 +00:00
# Typically there is no need to check if (commandline -ct) begins with `--`
# because it won't be matched. But we can prevent the slowdown from getting
# a list of all packages and filtering through it if we only do that when
# completing what seems to be a package name.
complete -f -c yarn -n '__fish_seen_subcommand_from remove; and not __fish_is_switch' -xa '(__yarn_installed_packages)'
2019-01-11 05:10:21 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from add; and not __fish_is_switch' -xa " (__yarn_filtered_list_packages \" $yarn_add \") "
2018-03-05 14:28:19 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a help
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a access
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from access' -a 'public restricted grant revoke ls-packages ls-collaborators edit'
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a add
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from add' -l dev -s D
complete -f -c yarn -n '__fish_seen_subcommand_from add' -l peer -s P
complete -f -c yarn -n '__fish_seen_subcommand_from add' -l O -s O
complete -f -c yarn -n '__fish_seen_subcommand_from add' -l exact -s E
complete -f -c yarn -n '__fish_seen_subcommand_from add' -l tilde -s T
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a bin
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a cache
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from cache' -a 'ls dir clean'
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a check
complete -f -c yarn -n __fish_use_subcommand -a clean
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a config
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from config' -a 'set get delete list'
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a generate-lock-entry
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a global
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from global' -a 'add bin ls remove upgrade'
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a info
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a init
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from init' -s y -l yes
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a install
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a licenses
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from licenses' -a 'ls generate-disclaimer'
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a link
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a list
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from list' -l depth
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a login
complete -f -c yarn -n __fish_use_subcommand -a logout
complete -f -c yarn -n __fish_use_subcommand -a outdated
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a owner
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from owner' -a 'add rm ls'
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a pack
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a publish
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from publish' -l access -a 'public restricted'
complete -f -c yarn -n '__fish_seen_subcommand_from publish' -l tag
complete -f -c yarn -n '__fish_seen_subcommand_from publish' -l new-version
complete -f -c yarn -n '__fish_seen_subcommand_from publish' -l message
complete -f -c yarn -n '__fish_seen_subcommand_from publish' -l no-git-tag-version
complete -f -c yarn -n '__fish_seen_subcommand_from publish' -l access
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from publish' -l tag
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a remove
complete -f -c yarn -n __fish_use_subcommand -a run
2017-02-09 16:24:38 +00:00
2017-12-15 04:13:09 +00:00
function __fish_yarn_run
2019-03-09 17:00:52 +00:00
if test -e package.json; and set -l python ( __fish_anypython )
# Warning: That weird indentation is necessary, because python.
2020-02-27 12:48:42 +00:00
$python -S -c 'import json, sys; data = json.load( sys .stdin) ;
2019-03-09 17:00:52 +00:00
for k,v in data[ "scripts" ] .items( ) : print( k + "\t" + v[ :18 ] ) ' < package.json 2 > /dev/null
else if test -e package.json; and type -q jq
jq -r '.scripts | to_entries | map("\(.key)\t\(.value | tostring | .[0:20])") | .[]' package.json
else if type -q jq
# Yarn is quite slow and still requires `jq` because the normal format is unusable.
2019-05-05 10:53:09 +00:00
command yarn run --json 2 > /dev/null | jq -r '.data.hints? | to_entries | map("\(.key)\t\(.value | tostring |.[0:20])") | .[]'
2019-03-09 17:00:52 +00:00
end
2017-12-15 04:13:09 +00:00
end
2019-02-19 13:23:18 +00:00
# Scripts can be used like normal subcommands, or with `yarn run SCRIPT`.
2019-03-09 17:03:19 +00:00
complete -c yarn -n '__fish_use_subcommand; or __fish_seen_subcommand_from run' -xa "(__fish_yarn_run)"
2017-12-15 04:13:09 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a tag
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from tag' -a 'add rm ls'
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a team
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from team' -a 'create destroy add rm ls'
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a unlink
complete -f -c yarn -n __fish_use_subcommand -a upgrade
complete -f -c yarn -n __fish_use_subcommand -a upgrade-interactive
2017-02-09 16:24:38 +00:00
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a version
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from version' -l new-version
complete -f -c yarn -n '__fish_seen_subcommand_from version' -l message
complete -f -c yarn -n '__fish_seen_subcommand_from version' -l no-git-tag-version
2020-03-09 18:36:12 +00:00
complete -f -c yarn -n __fish_use_subcommand -a versions
complete -f -c yarn -n __fish_use_subcommand -a why
2017-02-09 16:24:38 +00:00
# These are the yarn commands all of them use the same options
set -g yarn_cmds access add bin cache check clean config generate-lock-entry global info init install licenses link list login logout outdated owner pack publish remove run tag team unlink upgrade upgrade-interactive version versions why
# Common short, long options
2019-01-11 04:20:17 +00:00
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l help -s h -d 'output usage information'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l version -s V -d 'output the version number'
2017-02-09 16:24:38 +00:00
# The rest of common options are all of them long
2019-01-11 04:20:17 +00:00
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l verbose -d 'output verbose messages on internal operations'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l offline -d 'trigger an error if any required dependencies are not available in local cache'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l prefer-offline -d 'use network only if dependencies are not available in local cache'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l strict-semver
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l json
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l ignore-scripts -d 'don\' t run lifecycle scripts'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l har -d 'save HAR output of network traffic'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l ignore-platform -d 'ignore platform checks'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l ignore-engines -d 'ignore engines check'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l ignore-optional -d 'ignore optional dependencies'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l force -d 'ignore all caches'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l no-bin-links -d 'don\' t generate bin links when setting up packages'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l flat -d 'only allow one version of a package'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l 'prod production'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l no-lockfile -d 'don\' t read or generate a lockfile'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l pure-lockfile -d 'don\' t generate a lockfile'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l frozen-lockfile -d 'don\' t generate a lockfile and fail if an update is needed'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l global-folder
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l modules-folder -d 'rather than installing modules into the node_modules folder relative to the cwd, output them here'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l cache-folder -d 'specify a custom folder to store the yarn cache'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l mutex -d 'use a mutex to ensure only one yarn instance is executing'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l mutex -a 'file network'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l no-emoji -d 'disable emoji in output'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l proxy
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l https-proxy
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l no-progress -d 'disable progress bar'
complete -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l network-concurrency -d 'maximum number of concurrent network requests'