https://github.com/pablopunk/nuup
Yet another `npm publish` with superpowers.
https://github.com/pablopunk/nuup
Last synced: about 1 year ago
JSON representation
Yet another `npm publish` with superpowers.
- Host: GitHub
- URL: https://github.com/pablopunk/nuup
- Owner: pablopunk
- Created: 2017-12-11T19:15:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-13T15:07:13.000Z (about 7 years ago)
- Last Synced: 2024-05-02T05:12:18.464Z (about 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 174 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nuup
Yet another npm publish with superpowers.
*nuup* takes care of changing the version in your `package.json`: **tag**, **commit** and **push**.
## Install
```sh
npm install -g nuup
```
Or just use it directly with `npx`:
```sh
npx nuup
```
## Usage
```sh
$ nuup [patch, minor, major, ]
```
[](https://asciinema.org/a/TmCFYO8SZ6t7K5S6DbSof6sNG)
### Examples
```sh
$ nuup # default action is patch
0.0.0 => 0.0.1
$ nuup patch
0.0.1 => 0.0.2
$ nuup minor
0.0.2 => 0.1.0
$ nuup major
0.1.0 => 1.0.0
$ nuup 9.8.7
1.0.0 => 9.8.7
```
#### Options
* `[--version | -v]`
Show *nuup* version
## License
MIT
## Author
|  |
| --------------------------------- |
| [Pablo Varela](https://pablo.life) |