Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/redxtech/zsh-yup
A zsh plugin that provides a function upgrades all dependencies in a yarn/npm project.
https://github.com/redxtech/zsh-yup
dependencies npm yarn zsh zsh-pl
Last synced: 1 day ago
JSON representation
A zsh plugin that provides a function upgrades all dependencies in a yarn/npm project.
- Host: GitHub
- URL: https://github.com/redxtech/zsh-yup
- Owner: redxtech
- License: mit
- Created: 2021-07-08T20:40:57.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-08T20:41:05.000Z (over 3 years ago)
- Last Synced: 2024-11-15T06:20:23.369Z (2 months ago)
- Topics: dependencies, npm, yarn, zsh, zsh-pl
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# yup
> yup is a zsh plugin that provides a function upgrades all dependencies in a
> yarn/npm project.## Installing
### zinit
Add this to your zinit config (.zshrc):
```zsh
zinit light redxtech/zsh-yup# it also works with turbo mode:
zinit ice wait lucid
zinit load redxtech/zsh-yup
```### oh-my-zsh
Install it with your favourite zsh package manager, or clone it directly to your
`$ZSH_CUSTOM/plugins` directory with git, and add `zsh-yup` to the plugins
array in your `.zshrc` file:```zsh
plugins=(... zsh-yup)
```## Usage
`yup` is very easy to use, simply run the command:```zsh
yup
```There are some options to pass to the command:
```zsh
Usage: yup [-h/--help] [-d/--dev] [-D/--both] [-n/--npm]
Options:
-h, --help show this help message
-d, --dev update the devDependencies
-b, --both update both dependencies and devDependencies
-n, --npm update the dependencies using npm
```## Author
**yup** © [Gabe Dunn](https://github.com/redxtech), Released under the [MIT](./license.md) License.