diff options
author | 2023-09-14 13:32:03 +0800 | |
---|---|---|
committer | 2023-09-13 22:32:03 -0700 | |
commit | 8ae9aeea6becd8e34c45885943cfe3643beb68c9 (patch) | |
tree | ce92b57eb5a9089b1bf31264d03d31d7abe49367 /completions/bun.zsh | |
parent | 4ebed280dc5532b93c1e28ad0b33a7a315ab3b65 (diff) | |
download | bun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.tar.gz bun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.tar.zst bun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.zip |
Remove the ability to configure lockfile. (#5335)
Diffstat (limited to 'completions/bun.zsh')
-rw-r--r-- | completions/bun.zsh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/completions/bun.zsh b/completions/bun.zsh index 59df1db47..6f3665652 100644 --- a/completions/bun.zsh +++ b/completions/bun.zsh @@ -55,7 +55,6 @@ _bun() { '--no-save[]' \ '--dry-run[Don'"'"'t install anything]' \ '--force[Always request the latest versions from the registry & reinstall all dependenices]' \ - '--lockfile[Store & load a lockfile at a specific filepath]:lockfile' \ '--cache-dir[Store & load cached data from a specific directory path]:cache-dir' \ '--no-cache[Ignore manifest cache entirely]' \ '--silent[Don'"'"'t output anything]' \ @@ -97,7 +96,6 @@ _bun() { '--no-save[]' \ '--dry-run[Don'"'"'t install anything]' \ '--force[Always request the latest versions from the registry & reinstall all dependenices]' \ - '--lockfile[Store & load a lockfile at a specific filepath]:lockfile' \ '--cache-dir[Store & load cached data from a specific directory path]:cache-dir' \ '--no-cache[Ignore manifest cache entirely]' \ '--silent[Don'"'"'t output anything]' \ @@ -133,7 +131,6 @@ _bun() { '--no-save[]' \ '--dry-run[Don'"'"'t install anything]' \ '--force[Always request the latest versions from the registry & reinstall all dependenices]' \ - '--lockfile[Store & load a lockfile at a specific filepath]:lockfile' \ '--cache-dir[Store & load cached data from a specific directory path]:cache-dir' \ '--no-cache[Ignore manifest cache entirely]' \ '--silent[Don'"'"'t output anything]' \ @@ -284,7 +281,6 @@ _bun() { '--frozen-lockfile[Disallow changes to lockfile]' \ '--no-save[Do not save a lockfile]' '--dry-run[Do not install anything]' - '--lockfile[Store & load a lockfile at a specific filepath]' '-f[Always request the latest versions from the registry & reinstall all dependencies]' '--force[Always request the latest versions from the registry & reinstall all dependencies]' '--cache-dir[Store & load cached data from a specific directory path]' @@ -540,7 +536,6 @@ _bun() { '--no-save[]' \ '--dry-run[Don'"'"'t install anything]' \ '--force[Always request the latest versions from the registry & reinstall all dependenices]' \ - '--lockfile[Store & load a lockfile at a specific filepath]:lockfile' \ '--cache-dir[Store & load cached data from a specific directory path]:cache-dir' \ '--no-cache[Ignore manifest cache entirely]' \ '--silent[Don'"'"'t output anything]' \ @@ -576,7 +571,6 @@ _bun() { '-g[Remove a package globally]' \ '--global[Remove a package globally]' \ '--force[Always request the latest versions from the registry & reinstall all dependenices]' \ - '--lockfile[Store & load a lockfile at a specific filepath]:lockfile' \ '--cache-dir[Store & load cached data from a specific directory path]:cache-dir' \ '--no-cache[Ignore manifest cache entirely]' \ '--silent[Don'"'"'t output anything]' \ @@ -642,7 +636,7 @@ _bun_run_param_script_completion() { local -a scripts_list IFS=$'\n' scripts_list=($(SHELL=zsh bun getcompletes s)) IFS=$'\n' bins=($(SHELL=zsh bun getcompletes b)) - + _alternative "scripts:scripts:(($scripts_list))" _alternative "bin:bin:(($bins))" _alternative "files:file:_files -g '*.(js|ts|jsx|tsx|wasm)'" |