mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-06 20:57:47 +08:00
feat: add a new yarn alias ydd for yarn dedupe
This commit is contained in:
parent
2ad640f4e5
commit
6339d0ebce
@ -41,6 +41,7 @@ zstyle ':omz:plugins:yarn' berry yes
|
||||
| yb | `yarn build` | Run the build script defined in `package.json` |
|
||||
| ycc | `yarn cache clean` | Clean yarn's global cache of packages |
|
||||
| yd | `yarn dev` | Run the dev script defined in `package.json` |
|
||||
| ydd | `yarn dedupe` | Removes duplicate dependencies from the lockfile. |
|
||||
| yf | `yarn format` | Run the dev script defined in `package.json` |
|
||||
| yh | `yarn help` | Show help for a yarn command |
|
||||
| yi | `yarn init` | Interactively creates or updates a package.json file |
|
||||
|
||||
@ -17,6 +17,7 @@ alias yap="yarn add --peer"
|
||||
alias yb="yarn build"
|
||||
alias ycc="yarn cache clean"
|
||||
alias yd="yarn dev"
|
||||
alias ydd="yarn dedupe"
|
||||
alias yf="yarn format"
|
||||
alias yh="yarn help"
|
||||
alias yi="yarn init"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user