mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +01:00
feat: add a new yarn alias ydd for yarn dedupe
This commit is contained in:
parent
2ad640f4e5
commit
6339d0ebce
2 changed files with 2 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue