2017-02-09 16:24:38 +00:00
# NOTE: Fish helper functions are your best friend here!
# see https://github.com/fish-shell/fish-shell/blob/master/share/functions/__fish_seen_subcommand_from.fish
# and https://github.com/fish-shell/fish-shell/blob/master/share/functions/__fish_use_subcommand.fish
2018-04-19 13:24:20 +00:00
# If all-the-package-names is installed, it will be used to generate npm completions.
# Install globally with `sudo npm install -g all-the-package-names`. Keep it up to date.
function __yarn_list_packages
if not type -q all-the-package-names
return
end
all-the-package-names
end
2018-10-19 22:45:02 +00:00
# Entire list of packages is too long to be used efficiently in a `complete` subcommand.
# Search it for matches instead.
2018-04-19 13:24:20 +00:00
function __yarn_filtered_list_packages
2018-10-19 22:45:02 +00:00
# We used to avoid the duplication of this check by calling __yarn_list_packages
# instead of all-the-package-names directly below, but a) that breaks IO buffering
# because the output of all-the-package-names is > 10 MiB (#5267), and b) IO
# buffering slowed down the call considerably in all cases.
if not type -q all-the-package-names
return
end
2018-11-17 02:21:05 +00:00
all-the-package-names | string match -er -- "(?:\\b|_)" ( commandline -ct | string escape --style = regex)
2018-04-19 13:24:20 +00:00
end
2018-03-05 14:28:19 +00:00
function __yarn_find_package_json
set parents ( __fish_parent_directories ( pwd ) )
for p in $parents
if test -f " $p /package.json "
echo " $p /package.json "
return 0
end
end
return 1
end
2018-04-19 13:24:20 +00:00
function __yarn_installed_packages
2018-03-05 14:28:19 +00:00
set -l package_json ( __yarn_find_package_json )
if not test $status -eq 0
# no package.json in tree
return 1
end
2018-04-19 23:15:33 +00:00
if type -q jq
2018-04-21 04:05:31 +00:00
jq -r '.dependencies as $a1 | .devDependencies as $a2 | ($a1 + $a2) | to_entries[] | .key' $package_json
2018-04-19 23:15:33 +00:00
else
set -l depsFound 0
for line in ( cat $package_json )
# echo "evaluating $line"
if test $depsFound -eq 0
# echo "mode: noDeps"
if string match -qr '(devD|d)ependencies"' -- $line
# echo "switching to mode: deps"
set depsFound 1
continue
end
2018-03-05 14:28:19 +00:00
continue
end
2018-04-19 23:15:33 +00:00
if string match -qr '\}' -- $line
# echo "switching to mode: noDeps"
set depsFound 0
continue
end
2018-03-05 14:28:19 +00:00
2018-04-19 23:15:33 +00:00
# echo "mode: deps"
2018-03-05 14:28:19 +00:00
2018-04-19 23:15:33 +00:00
string replace -r '^\s*"([^"]+)".*' '$1' -- $line
end
2018-03-05 14:28:19 +00:00
end
end
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)'
complete -f -c yarn -n '__fish_seen_subcommand_from add; and not __fish_is_switch' -xa '(__yarn_filtered_list_packages)'
2018-03-05 14:28:19 +00:00
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_use_subcommand' -a help
complete -f -c yarn -n '__fish_use_subcommand' -a access
complete -f -c yarn -n '__fish_seen_subcommand_from access' -a 'public restricted grant revoke ls-packages ls-collaborators edit'
complete -f -c yarn -n '__fish_use_subcommand' -a add
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
complete -f -c yarn -n '__fish_use_subcommand' -a bin
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
complete -f -c yarn -n '__fish_use_subcommand' -a check
complete -f -c yarn -n '__fish_use_subcommand' -a clean
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
complete -f -c yarn -n '__fish_use_subcommand' -a generate-lock-entry
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'
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_use_subcommand' -a info
complete -f -c yarn -n '__fish_use_subcommand' -a init
complete -f -c yarn -n '__fish_seen_subcommand_from init' -s y -l yes
complete -f -c yarn -n '__fish_use_subcommand' -a install
2017-12-15 04:09:53 +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'
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_use_subcommand' -a link
2017-02-09 16:24:38 +00:00
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_use_subcommand' -a list
complete -f -c yarn -n '__fish_seen_subcommand_from list' -l depth
2017-02-09 16:24:38 +00:00
2017-12-15 04:09:53 +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
2017-12-15 04:09:53 +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'
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_use_subcommand' -a pack
2017-02-09 16:24:38 +00:00
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_use_subcommand' -a publish
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
2017-12-15 04:09:53 +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
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
command yarn run --json 2 > /dev/null | jq -r '.data.hints? | to_entries | map("\(.key)\t\(.value | tostring |.[0:20])") | .[]'
end
end
complete -f -c yarn -n '__fish_seen_subcommand_from run' -a "(__fish_yarn_run)"
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_use_subcommand' -a tag
complete -f -c yarn -n '__fish_seen_subcommand_from tag' -a 'add rm ls'
2017-02-09 16:24:38 +00:00
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_use_subcommand' -a team
complete -f -c yarn -n '__fish_seen_subcommand_from team' -a 'create destroy add rm ls'
2017-02-09 16:24:38 +00:00
2017-12-15 04:09:53 +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
complete -f -c yarn -n '__fish_use_subcommand' -a version
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
2017-12-15 04:09:53 +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
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l help -s h -d 'output usage information'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l version -s V -d 'output the version number'
# The rest of common options are all of them long
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l verbose -d 'output verbose messages on internal operations'
complete -f -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 -f -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 -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l strict-semver
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l json
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l ignore-scripts -d 'don\' t run lifecycle scripts'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l har -d 'save HAR output of network traffic'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l ignore-platform -d 'ignore platform checks'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l ignore-engines -d 'ignore engines check'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l ignore-optional -d 'ignore optional dependencies'
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l force -d 'ignore all caches'
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l no-bin-links -d 'don\' t generate bin links when setting up packages'
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l flat -d 'only allow one version of a package'
2017-02-09 16:24:38 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l 'prod production'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l no-lockfile -d 'don\' t read or generate a lockfile'
2017-12-15 04:09:53 +00:00
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l pure-lockfile -d 'don\' t generate a lockfile'
2017-02-09 16:24:38 +00:00
complete -f -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 -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l global-folder
complete -f -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 -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l cache-folder -d 'specify a custom folder to store the yarn cache'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l mutex -d 'use a mutex to ensure only one yarn instance is executing'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l mutex -a 'file network'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l no-emoji -d 'disable emoji in output'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l proxy
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l https-proxy
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l no-progress -d 'disable progress bar'
complete -f -c yarn -n '__fish_seen_subcommand_from $yarn_cmds' -l network-concurrency -d 'maximum number of concurrent network requests'