Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gcaufy/verpub
A light weight package release tool.
https://github.com/gcaufy/verpub
Last synced: about 1 month ago
JSON representation
A light weight package release tool.
- Host: GitHub
- URL: https://github.com/gcaufy/verpub
- Owner: Gcaufy
- Created: 2019-09-06T13:03:03.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-25T09:11:48.000Z (about 1 year ago)
- Last Synced: 2024-10-03T07:55:19.807Z (about 2 months ago)
- Language: JavaScript
- Size: 130 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
A light weight package release tool.
## Install && Usage
1. Run in command line
```
$ npm install verpub -g # global install verpub
$ verpub publish
```## How it works
1. If this project do not contain subPackage, then skip this step. Otherwise it will allow you to select a specific package to publish.
2. Select a release tag and release version.
3. Check if your git work tree is not clean, then process end.
4. Write version to your package.
5. Run git commit && git tag && git push(include tags).
6. Run npm publish## API
```
const VerPub = require('verpub');const verpub = new VerPub(options);
verpub.publish();
```