i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update bun completions

+5 -8
+5 -8
fish/.config/fish/completions/bun.fish
··· 33 33 end 34 34 35 35 set -l bun_install_boolean_flags yarn production optional development no-save dry-run force no-cache silent verbose global 36 - set -l bun_install_boolean_flags_descriptions "Write a yarn.lock file (yarn v1)" "Don't install devDependencies" "Add dependency to optionalDependencies" "Add dependency to devDependencies" "Don't install devDependencies" "Don't install anything" "Always request the latest versions from the registry & reinstall all dependencies" "Ignore manifest cache entirely" "Don't output anything" "Excessively verbose logging" "Use global folder" 36 + set -l bun_install_boolean_flags_descriptions "Write a yarn.lock file (yarn v1)" "Don't install devDependencies" "Add dependency to optionalDependencies" "Add dependency to devDependencies" "Don't update package.json or save a lockfile" "Don't install anything" "Always request the latest versions from the registry & reinstall all dependencies" "Ignore manifest cache entirely" "Don't output anything" "Excessively verbose logging" "Use global folder" 37 37 38 38 set -l bun_builtin_cmds_without_run dev create help bun upgrade discord install remove add init pm x 39 39 set -l bun_builtin_cmds_accepting_flags create help bun upgrade discord run init link unlink pm x ··· 53 53 # Scripts have descriptions appended with a tab separator. 54 54 # Strip off descriptions for the purposes of subcommand testing. 55 55 set -l scripts (__fish__get_bun_scripts) 56 - if __fish_seen_subcommand_from $(string split \t -f 1 -- $scripts) 56 + if __fish_seen_subcommand_from (string split \t -f 1 -- $scripts) 57 57 return 58 58 end 59 59 # Emit scripts. ··· 70 70 end 71 71 end 72 72 end 73 - 74 73 75 74 # Clear existing completions 76 75 complete -e -c bun ··· 121 120 complete -c bun \ 122 121 -n __fish_use_subcommand -a discord -d 'Open bun\'s Discord server' -x 123 122 124 - 125 123 complete -c bun \ 126 124 -n __fish_use_subcommand -a bun -d 'Generate a new bundle' 127 - 128 125 129 126 complete -c bun \ 130 127 -n "__fish_seen_subcommand_from bun" -F -d 'Bundle this' ··· 132 129 complete -c bun \ 133 130 -n "__fish_seen_subcommand_from create; and __fish_seen_subcommand_from react next" -F -d "Create in directory" 134 131 135 - 136 132 complete -c bun \ 137 133 -n __fish_use_subcommand -a init -F -d 'Start an empty Bun project' 138 134 ··· 144 140 145 141 complete -c bun \ 146 142 -n __fish_use_subcommand -a remove -F -d 'Remove a package from package.json' 147 - 148 143 149 144 for i in (seq (count $bun_install_boolean_flags)) 150 145 complete -c bun \ ··· 179 174 complete -c bun -n __fish_use_subcommand -a add -d "Add a dependency to package.json" -f 180 175 complete -c bun -n __fish_use_subcommand -a init -d "Initialize a Bun project in this directory" -f 181 176 complete -c bun -n __fish_use_subcommand -a link -d "Register or link a local npm package" -f 182 - complete -c bun -n __fish_use_subcommand -a link -d "Unregister a local npm package" -f 177 + complete -c bun -n __fish_use_subcommand -a unlink -d "Unregister a local npm package" -f 183 178 complete -c bun -n __fish_use_subcommand -a pm -d "Additional package management utilities" -f 184 179 complete -c bun -n __fish_use_subcommand -a x -d "Execute a package binary, installing if needed" -f 180 + complete -c bun -n __fish_use_subcommand -a outdated -d "Display the latest versions of outdated dependencies" -f 181 + complete -c bun -n __fish_use_subcommand -a publish -d "Publish your package from local to npm" -f