diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2019-01-31 17:25:13 -0700 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2019-01-31 17:25:13 -0700 |
commit | 89c9e8a7bc177d4cff6ba8d28cf6b57a9a603095 (patch) | |
tree | 0a301691b8481163680454a1f07ca54115ec17eb /plugins/yarn/README.md | |
parent | 075160b86c64045e661209ad7906559068b44104 (diff) | |
parent | 851899e59ea71ce8fbae738ec7aeb7a967585977 (diff) | |
download | zsh-89c9e8a7bc177d4cff6ba8d28cf6b57a9a603095.tar.gz zsh-89c9e8a7bc177d4cff6ba8d28cf6b57a9a603095.tar.bz2 zsh-89c9e8a7bc177d4cff6ba8d28cf6b57a9a603095.zip |
Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/yarn/README.md')
-rw-r--r-- | plugins/yarn/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/yarn/README.md b/plugins/yarn/README.md index c4e6d6da5..671a272d9 100644 --- a/plugins/yarn/README.md +++ b/plugins/yarn/README.md @@ -19,13 +19,19 @@ plugins=(... yarn) | yap | `yarn add --peer` | Install a package in peerDependencies (`package.json`) | | yb | `yarn build` | Run the build script defined in `package.json` | | ycc | `yarn cache clean` | Clean yarn's global cache of packages | +| yga | `yarn global add` | Install packages globally on your operating system | +| ygls | `yarn global list` | Lists global installed packages | +| ygrm | `yarn global remove` | Remove global installed packages from your OS | | ygu | `yarn global upgrade` | Upgrade packages installed globally to their latest version | | yh | `yarn help` | Show help for a yarn command | +| yi | `yarn init` | Interactively creates or updates a package.json file | | yin | `yarn install` | Install dependencies defined in `package.json` | | yls | `yarn list` | List installed packages | | yout | `yarn outdated` | Check for outdated package dependencies | +| yp | `yarn pack` | Create a compressed gzip archive of package dependencies | | yrm | `yarn remove` | Remove installed packages | | yrun | `yarn run` | Run a defined package script | +| ys | `yarn serve` | Start the dev server | | yst | `yarn start` | Run the start script defined in `package.json` | | yt | `yarn test` | Run the test script defined in `package.json` | | yuc | `yarn global upgrade && yarn cache clean` | Upgrade global packages and clean yarn's global cache | |